Lines Matching refs:DriverDevice
56 class DriverDevice : public Device { class
60 static std::shared_ptr<DriverDevice> create(const std::string& name,
64 DriverDevice(std::shared_ptr<VersionedIDevice> device);
161 DriverDevice::DriverDevice(std::shared_ptr<VersionedIDevice> device) in DriverDevice() function in android::nn::DriverDevice
172 std::shared_ptr<DriverDevice> DriverDevice::create(const std::string& name, in create()
182 return std::make_shared<DriverDevice>(std::move(device)); in create()
185 std::vector<bool> DriverDevice::getSupportedOperations(const MetaModel& metaModel) const { in getSupportedOperations()
244 std::pair<int, std::shared_ptr<PreparedModel>> DriverDevice::prepareModel( in prepareModel()
257 std::pair<int, std::unique_ptr<Memory>> DriverDevice::allocate(const MemoryDescriptor& desc, in allocate()
823 const auto driverDevice = DriverDevice::create(name, makeDevice); in forTest_makeDriverDevice()
847 if (auto device = DriverDevice::create(name, makeDevice)) { in registerDevice()