Lines Matching full:interfaces
29 const std::vector<std::string>& interfaces, Callback callback) : in DBusInterfacesFinder() argument
30 bus{bus}, service{service}, interfaces{interfaces}, in DBusInterfacesFinder()
55 interfaces; in interfacesAddedCallback() local
56 message.read(path, interfaces); in interfacesAddedCallback()
58 // Call callback for interfaces that we are looking for in interfacesAddedCallback()
59 for (const auto& [interface, properties] : interfaces) in interfacesAddedCallback()
61 if (std::ranges::contains(this->interfaces, interface)) in interfacesAddedCallback()
79 auto objects = util::getSubTree(bus, "/", interfaces, 0); in findInterfaces()
81 // Search for matching interfaces in returned objects in findInterfaces()
84 for (const auto& [service, interfaces] : services) in findInterfaces()
88 for (const auto& interface : interfaces) in findInterfaces()
90 if (std::ranges::contains(this->interfaces, interface)) in findInterfaces()