| 355 | } |
| 356 | |
| 357 | bool DeviceManagerBase::isPresentSysfsPath(const std::string& sysfs_path) const |
| 358 | { |
| 359 | uint32_t id = 0; |
| 360 | |
| 361 | if (knownSysfsPath(sysfs_path, &id)) { |
| 362 | return 0 == id; |
| 363 | } |
| 364 | |
| 365 | return false; |
| 366 | } |
| 367 | |
| 368 | bool DeviceManagerBase::knownSysfsPath(const std::string& sysfs_path, uint32_t* id_ptr) const |
| 369 | { |
nothing calls this directly
no outgoing calls
no test coverage detected