Lines Matching full:interface

49                     const std::string& interface, const std::string& method) :  in DBusMethodError()  argument
51 interface, method)), in DBusMethodError()
52 busName(busName), path(path), interface(interface), method(method) in DBusMethodError()
57 const std::string interface; member in phosphor::fan::util::DBusMethodError
70 DBusServiceError(const std::string& path, const std::string& interface) : in DBusServiceError() argument
72 std::format("DBus service lookup failed: {} {}", path, interface)), in DBusServiceError()
73 path(path), interface(interface) in DBusServiceError()
77 const std::string interface; member in phosphor::fan::util::DBusServiceError
89 const std::string& path, const std::string& interface, in DBusPropertyError() argument
91 DBusError(msg + std::format(": {} {} {} {}", busName, path, interface, in DBusPropertyError()
93 busName(busName), path(path), interface(interface), property(property) in DBusPropertyError()
98 const std::string interface; member in phosphor::fan::util::DBusPropertyError
123 const std::string& interface, in callMethod() argument
127 interface.c_str(), method.c_str()); in callMethod()
134 throw DBusMethodError{busName, path, interface, method}; in callMethod()
140 throw DBusMethodError{busName, path, interface, method}; in callMethod()
147 const std::string& interface, in callMethod() argument
150 return callMethod(getBus(), busName, path, interface, method, in callMethod()
158 const std::string& path, const std::string& interface, in callMethodAndRead() argument
162 bus, busName, path, interface, method, std::forward<Args>(args)...); in callMethodAndRead()
172 const std::string& interface, const std::string& method, Args&&... args) in callMethodAndRead() argument
174 return callMethodAndRead<Ret>(getBus(), busName, path, interface, in callMethodAndRead()
180 const std::string& interface, int32_t depth) in getSubTreeRaw() argument
189 Intfs intfs = {interface}; in getSubTreeRaw()
221 const std::string& interface, int32_t depth) in getSubTree() argument
223 auto mapperResp = getSubTreeRaw(bus, path, interface, depth); in getSubTree()
229 phosphor::logging::entry("INTERFACE=%s", interface.c_str()), in getSubTree()
239 const std::string& interface, int32_t depth) in getSubTreePathsRaw() argument
247 Intfs intfs = {interface}; in getSubTreePathsRaw()
258 const std::string& interface, int32_t depth) in getSubTreePaths() argument
260 auto mapperResp = getSubTreePathsRaw(bus, path, interface, depth); in getSubTreePaths()
266 phosphor::logging::entry("INTERFACE=%s", interface.c_str()), in getSubTreePaths()
275 const std::string& interface) in getServiceRaw() argument
284 GetObject::mapped_type{interface}); in getServiceRaw()
289 const std::string& interface) in getService() argument
293 auto mapperResp = getServiceRaw(bus, path, interface); in getService()
301 throw DBusServiceError{path, interface}; in getService()
307 throw DBusServiceError{path, interface}; in getService()
313 const std::string& interface) in getService() argument
315 return getService(getBus(), path, interface); in getService()
340 const std::string& interface, in getProperty() argument
345 auto service = getService(bus, path, interface); in getProperty()
348 "Get"s, interface, property); in getProperty()
352 interface, property}; in getProperty()
362 const std::string& interface, in getProperty() argument
365 return getProperty<Property>(getBus(), path, interface, property); in getProperty()
372 const std::string& interface, const std::string& property) in getPropertyVariant() argument
376 auto service = getService(bus, path, interface); in getPropertyVariant()
379 "Get"s, interface, property); in getPropertyVariant()
383 path, interface, property}; in getPropertyVariant()
393 const std::string& interface, in getPropertyVariant() argument
396 return getPropertyVariant<Variant>(getBus(), path, interface, property); in getPropertyVariant()
403 const std::string& path, const std::string& interface, in callMethodAndReturn() argument
407 interface.c_str(), method.c_str()); in callMethodAndReturn()
418 const std::string& interface, in getProperty() argument
425 "Get"s, interface, property); in getProperty()
429 interface, property}; in getProperty()
439 const std::string& interface, in getProperty() argument
442 return getProperty<Property>(getBus(), service, path, interface, in getProperty()
450 const std::string& path, const std::string& interface, in getPropertyVariant() argument
457 "Get"s, interface, property); in getPropertyVariant()
461 path, interface, property}; in getPropertyVariant()
472 const std::string& interface, const std::string& property) in getPropertyVariant() argument
474 return getPropertyVariant<Variant>(getBus(), service, path, interface, in getPropertyVariant()
481 const std::string& interface, in setProperty() argument
488 auto service = getService(bus, path, interface); in setProperty()
491 "Set"s, interface, property, varValue); in setProperty()
495 interface, property}; in setProperty()
502 const std::string& interface, in setProperty() argument
505 return setProperty(getBus(), path, interface, property, in setProperty()
513 const std::string& interface, in setProperty() argument
522 "Set"s, interface, property, varValue); in setProperty()
526 interface, property}; in setProperty()
533 const std::string& interface, in setProperty() argument
536 return setProperty(getBus(), service, path, interface, property, in setProperty()
544 const std::string& interface, const std::string& method, Args&&... args) in lookupAndCallMethod() argument
546 return callMethod(bus, getService(bus, path, interface), path, in lookupAndCallMethod()
547 interface, method, std::forward<Args>(args)...); in lookupAndCallMethod()
553 const std::string& interface, in lookupAndCallMethod() argument
556 return lookupAndCallMethod(getBus(), path, interface, method, in lookupAndCallMethod()
564 const std::string& interface, const std::string& method, Args&&... args) in lookupCallMethodAndRead() argument
566 return callMethodAndRead(bus, getService(bus, path, interface), path, in lookupCallMethodAndRead()
567 interface, method, in lookupCallMethodAndRead()
574 const std::string& path, const std::string& interface, in lookupCallMethodAndRead() argument
577 return lookupCallMethodAndRead<Ret>(getBus(), path, interface, method, in lookupCallMethodAndRead()