Searched refs:driverDevices (Results 1 – 1 of 1) sorted by relevance
1245 std::vector<std::shared_ptr<DriverDevice>> driverDevices; in getDriverDevices() local1246 driverDevices.reserve(devicesAndUpdatability.size()); in getDriverDevices()1248 driverDevices.push_back(DriverDevice::create(std::move(device), isDeviceUpdatable)); in getDriverDevices()1250 return driverDevices; in getDriverDevices()1255 std::vector<std::shared_ptr<DriverDevice>> driverDevices; in getDriverDevices() local1256 driverDevices.reserve(devices.size()); in getDriverDevices()1258 driverDevices.push_back(DriverDevice::create(std::move(device))); in getDriverDevices()1260 return driverDevices; in getDriverDevices()1268 auto driverDevices = getDriverDevices(); in findAvailableDevices() local1269 for (auto& driverDevice : driverDevices) { in findAvailableDevices()