Lines Matching refs:driverDevice
1286 const auto driverDevice = DriverDevice::create(device); in forTest_makeDriverDevice() local
1287 CHECK(driverDevice != nullptr); in forTest_makeDriverDevice()
1288 return driverDevice; in forTest_makeDriverDevice()
1335 for (auto& driverDevice : driverDevices) { in findAvailableDevices() local
1337 if (!std::regex_match(driverDevice->getName(), pattern)) { in findAvailableDevices()
1338 LOG(INFO) << "Ignored interface " << driverDevice->getName() in findAvailableDevices()
1339 << " (version = " << driverDevice->getVersionString() << ")"; in findAvailableDevices()
1343 LOG(INFO) << "Found interface " << driverDevice->getName() in findAvailableDevices()
1344 << " (version = " << driverDevice->getVersionString() << ")"; in findAvailableDevices()
1345 mDevices.push_back(std::move(driverDevice)); in findAvailableDevices()
1356 if (auto driverDevice = DriverDevice::create(device)) { in registerDevice() local
1357 mDevices.push_back(std::move(driverDevice)); in registerDevice()