Lines Matching full:interfaces

61             const auto& interfaces = object.second;  in createAll()  local
63 auto propertyMap = interfaces.find(LOGGING_IFACE); in createAll()
65 if (propertyMap != interfaces.end()) in createAll()
67 createWithRestore(object.first, interfaces); in createAll()
79 const DbusInterfaceMap& interfaces) in createWithRestore() argument
81 createObject(objectPath, interfaces); in createWithRestore()
83 restoreCalloutObjects(objectPath, interfaces); in createWithRestore()
87 const DbusInterfaceMap& interfaces) in create() argument
89 createObject(objectPath, interfaces); in create()
91 createCalloutObjects(objectPath, interfaces); in create()
95 const DbusInterfaceMap& interfaces) in createObject() argument
98 auto logInterface = interfaces.find(LOGGING_IFACE); in createObject()
118 InterfaceMap interfaces; in addInterface() local
119 interfaces.emplace(type, object); in addInterface()
120 entries.emplace(id, std::move(interfaces)); in addInterface()
142 InterfaceMapMulti interfaces; in addChildInterface() local
143 interfaces.emplace(type, std::move(objects)); in addChildInterface()
144 childEntries.emplace(id, std::move(interfaces)); in addChildInterface()
182 const DbusInterfaceMap& interfaces) in createCalloutObjects() argument
189 auto associations = interfaces.find(ASSOC_IFACE); in createCalloutObjects()
190 if (associations == interfaces.end()) in createCalloutObjects()
240 getLogTimestamp(interfaces), properties); in createCalloutObjects()
261 const DbusInterfaceMap& interfaces) in restoreCalloutObjects() argument
287 getLogTimestamp(interfaces)); in restoreCalloutObjects()
300 DbusInterfaceMap interfaces; in interfaceAdded() local
302 msg.read(path, interfaces); in interfaceAdded()
306 if (interfaces.find(LOGGING_IFACE) != interfaces.end()) in interfaceAdded()
308 create(path, interfaces); in interfaceAdded()
312 uint64_t Manager::getLogTimestamp(const DbusInterfaceMap& interfaces) in getLogTimestamp() argument
314 auto interface = interfaces.find(LOGGING_IFACE); in getLogTimestamp()
315 if (interface != interfaces.end()) in getLogTimestamp()
346 DbusInterfaceList interfaces; in interfaceRemoved() local
348 msg.read(path, interfaces); in interfaceRemoved()
353 auto i = std::find(interfaces.begin(), interfaces.end(), LOGGING_IFACE); in interfaceRemoved()
355 if (i != interfaces.end()) in interfaceRemoved()