Lines Matching defs:entry
37 auto [entry, fresh] = devices.emplace(inventory, device);
38 if (!fresh && entry->second.get() != device.get())
42 std::format("Tried to add entry for existing device: {}",
49 auto entry = lookup(device);
50 if (entry == devices.end())
57 devices.erase(entry);
68 auto entry = lookup(device);
69 if (entry == devices.end())
73 return entry->first;
78 auto entry = devices.find(inventory);
79 if (entry == devices.end())
83 return entry->second;