Lines Matching full:find

14     auto iface = assocMaps.ifaces.find(assocPath);  in updateEndpointsOnDbus()
60 auto iface = assocMaps.ifaces.find(assocPath); in scheduleUpdateEndpointsOnDbus()
92 // Use associationOwners to find the association paths and endpoints in removeAssociation()
101 // Find the services that have associations for this object path in removeAssociation()
102 auto owners = assocMaps.owners.find(sourcePath); in removeAssociation()
108 // Find the association paths and endpoints owned by this object in removeAssociation()
110 auto assocs = owners->second.find(owner); in removeAssociation()
140 auto assoc = assocMaps.ifaces.find(assocPath); in removeAssociationEndpoints()
150 auto e = std::find(endpointsInDBus.begin(), endpointsInDBus.end(), in removeAssociationEndpoints()
167 // Find the services that have associations on this path. in checkAssociationEndpointRemoves()
168 auto originalOwners = assocMaps.owners.find(sourcePath); in checkAssociationEndpointRemoves()
174 // Find the associations for this service in checkAssociationEndpointRemoves()
175 auto originalAssociations = originalOwners->second.find(owner); in checkAssociationEndpointRemoves()
190 auto newEndpoints = newAssociations.find(originalAssocPath); in checkAssociationEndpointRemoves()
204 if (std::find(newEndpoints->second.begin(), in checkAssociationEndpointRemoves()
232 if (std::find(endpoints.begin(), endpoints.end(), e) == endpoints.end()) in addEndpointsToAssocIfaces()
262 if (interfaceMap.find(objectPath) == interfaceMap.end()) in associationChanged()
291 auto a = assocMaps.owners.find(path); in associationChanged()
294 auto o = a->second.find(owner); in associationChanged()
320 auto p = assocMaps.pending.find(objectPath); in addPendingAssociation()
388 auto a = assocMaps.owners.find(ownerPath); in addSingleAssociation()
391 auto o = a->second.find(owner); in addSingleAssociation()
394 auto p = o->second.find(assocPath); in addSingleAssociation()
422 auto pending = assocMaps.pending.find(objectPath); in checkIfPendingAssociation()
428 if (interfaceMap.find(objectPath) == interfaceMap.end()) in checkIfPendingAssociation()
440 if (interfaceMap.find(std::get<reversePathPos>(e)) == in checkIfPendingAssociation()
501 if (std::find(endpoints.begin(), endpoints.end(), in findAssociations()
510 // Now we need to find the endpointPath/<type> -> in findAssociations()
520 std::find(otherEndpoints.begin(), in findAssociations()
552 * @param[in] endpointPath - the endpoint path to find and remove
561 auto assoc = assocMaps.ifaces.find(assocPath); in removeAssociationIfacesEntry()
565 auto e = std::find(endpoints.begin(), endpoints.end(), endpointPath); in removeAssociationIfacesEntry()
593 auto owners = sources->second.find(owner); in removeAssociationOwnersEntry()
596 auto entry = owners->second.find(assocPath); in removeAssociationOwnersEntry()
599 auto e = std::find(entry->second.begin(), entry->second.end(), in removeAssociationOwnersEntry()