Lines Matching +full:entry +full:- +full:method
8 * http://www.apache.org/licenses/LICENSE-2.0
18 #include <phosphor-logging/log.hpp>
38 auto method = bus.new_method_call(service.c_str(), objPath.c_str(), in getManagedObjects() local
42 auto reply = bus.call(method); in getManagedObjects()
56 auto method = bus.new_method_call(service.c_str(), objPath.c_str(), in getAllProperties() local
58 method.append(interface); in getAllProperties()
59 auto reply = bus.call(method); in getAllProperties()
71 auto method = bus.new_method_call(MAPPER_BUSNAME, MAPPER_PATH, MAPPER_IFACE, in getSubtree() local
73 method.append(root); in getSubtree()
74 method.append(depth); in getSubtree()
75 method.append(std::vector<std::string>({interface})); in getSubtree()
76 auto reply = bus.call(method); in getSubtree()
91 auto s = std::find_if(services->second.begin(), services->second.end(), in getService()
92 [&interface](const auto& entry) { in getService() argument
93 auto i = std::find(entry.second.begin(), entry.second.end(), in getService()
95 return i != entry.second.end(); in getService()
97 if (s != services->second.end()) in getService()
99 service = s->first; in getService()