| 15 | static const auto LOGGER = Logger("Devices"); |
| 16 | |
| 17 | Device::Device() : id(nextId++) {} |
| 18 | |
| 19 | static std::shared_ptr<Device::KernelDeviceHolder> createKernelDeviceHolder(const std::shared_ptr<Device>& device) { |
| 20 | auto kernel_device_name = std::format("hal-device-{}", device->getId()); |
nothing calls this directly
no outgoing calls
no test coverage detected