Lines Matching full:string
37 explicit DBusError(const std::string& msg) : std::runtime_error(msg) {} in DBusError()
48 DBusMethodError(const std::string& busName, const std::string& path, in DBusMethodError()
49 const std::string& interface, const std::string& method) : in DBusMethodError()
55 const std::string busName;
56 const std::string path;
57 const std::string interface;
58 const std::string method;
70 DBusServiceError(const std::string& path, const std::string& interface) : in DBusServiceError()
76 const std::string path;
77 const std::string interface;
88 DBusPropertyError(const std::string& msg, const std::string& busName, in DBusPropertyError()
89 const std::string& path, const std::string& interface, in DBusPropertyError()
90 const std::string& property) : in DBusPropertyError()
96 const std::string busName;
97 const std::string path;
98 const std::string interface;
99 const std::string property;
104 using Properties = std::map<std::string, std::variant<T...>>;
121 static auto callMethod(sdbusplus::bus_t& bus, const std::string& busName, in callMethod()
122 const std::string& path, in callMethod()
123 const std::string& interface, in callMethod()
124 const std::string& method, Args&&... args) in callMethod()
146 static auto callMethod(const std::string& busName, const std::string& path, in callMethod()
147 const std::string& interface, in callMethod()
148 const std::string& method, Args&&... args) in callMethod()
157 sdbusplus::bus_t& bus, const std::string& busName, in callMethodAndRead()
158 const std::string& path, const std::string& interface, in callMethodAndRead()
159 const std::string& method, Args&&... args) in callMethodAndRead()
171 const std::string& busName, const std::string& path, in callMethodAndRead()
172 const std::string& interface, const std::string& method, Args&&... args) in callMethodAndRead()
179 static auto getSubTreeRaw(sdbusplus::bus_t& bus, const std::string& path, in getSubTreeRaw()
180 const std::string& interface, int32_t depth) in getSubTreeRaw()
184 using Path = std::string; in getSubTreeRaw()
185 using Intf = std::string; in getSubTreeRaw()
186 using Serv = std::string; in getSubTreeRaw()
200 static auto getSubTreeRaw(sdbusplus::bus_t& bus, const std::string& path, in getSubTreeRaw()
201 const std::vector<std::string>& intfs, in getSubTreeRaw()
206 using Path = std::string; in getSubTreeRaw()
207 using Intf = std::string; in getSubTreeRaw()
208 using Serv = std::string; in getSubTreeRaw()
220 static auto getSubTree(sdbusplus::bus_t& bus, const std::string& path, in getSubTree()
221 const std::string& interface, int32_t depth) in getSubTree()
236 const std::string& path, in getSubTreePathsRaw()
237 const std::string& interface, int32_t depth) in getSubTreePathsRaw()
241 using Path = std::string; in getSubTreePathsRaw()
242 using Intf = std::string; in getSubTreePathsRaw()
255 static auto getSubTreePaths(sdbusplus::bus_t& bus, const std::string& path, in getSubTreePaths()
256 const std::string& interface, int32_t depth) in getSubTreePaths()
270 static auto getServiceRaw(sdbusplus::bus_t& bus, const std::string& path, in getServiceRaw()
271 const std::string& interface) in getServiceRaw()
274 using GetObject = std::map<std::string, std::vector<std::string>>; in getServiceRaw()
284 static auto getService(sdbusplus::bus_t& bus, const std::string& path, in getService()
285 const std::string& interface) in getService()
307 static auto getService(const std::string& path, in getService()
308 const std::string& interface) in getService()
316 const std::string& service, in getManagedObjects()
317 const std::string& path) in getManagedObjects()
322 using Intf = std::string; in getManagedObjects()
323 using Prop = std::string; in getManagedObjects()
334 static auto getProperty(sdbusplus::bus_t& bus, const std::string& path, in getProperty()
335 const std::string& interface, in getProperty()
336 const std::string& property) in getProperty()
356 static auto getProperty(const std::string& path, in getProperty()
357 const std::string& interface, in getProperty()
358 const std::string& property) in getProperty()
366 sdbusplus::bus_t& bus, const std::string& path, in getPropertyVariant()
367 const std::string& interface, const std::string& property) in getPropertyVariant()
387 static auto getPropertyVariant(const std::string& path, in getPropertyVariant()
388 const std::string& interface, in getPropertyVariant()
389 const std::string& property) in getPropertyVariant()
397 sdbusplus::bus_t& bus, const std::string& busName, in callMethodAndReturn()
398 const std::string& path, const std::string& interface, in callMethodAndReturn()
399 const std::string& method, Args&&... args) in callMethodAndReturn()
411 static auto getProperty(sdbusplus::bus_t& bus, const std::string& service, in getProperty()
412 const std::string& path, in getProperty()
413 const std::string& interface, in getProperty()
414 const std::string& property) in getProperty()
433 static auto getProperty(const std::string& service, const std::string& path, in getProperty()
434 const std::string& interface, in getProperty()
435 const std::string& property) in getProperty()
444 sdbusplus::bus_t& bus, const std::string& service, in getPropertyVariant()
445 const std::string& path, const std::string& interface, in getPropertyVariant()
446 const std::string& property) in getPropertyVariant()
466 const std::string& service, const std::string& path, in getPropertyVariant()
467 const std::string& interface, const std::string& property) in getPropertyVariant()
475 static void setProperty(sdbusplus::bus_t& bus, const std::string& path, in setProperty()
476 const std::string& interface, in setProperty()
477 const std::string& property, Property&& value) in setProperty()
496 static void setProperty(const std::string& path, in setProperty()
497 const std::string& interface, in setProperty()
498 const std::string& property, Property&& value) in setProperty()
506 static void setProperty(sdbusplus::bus_t& bus, const std::string& service, in setProperty()
507 const std::string& path, in setProperty()
508 const std::string& interface, in setProperty()
509 const std::string& property, Property&& value) in setProperty()
527 static void setProperty(const std::string& service, const std::string& path, in setProperty()
528 const std::string& interface, in setProperty()
529 const std::string& property, Property&& value) in setProperty()
538 sdbusplus::bus_t& bus, const std::string& path, in lookupAndCallMethod()
539 const std::string& interface, const std::string& method, Args&&... args) in lookupAndCallMethod()
547 static auto lookupAndCallMethod(const std::string& path, in lookupAndCallMethod()
548 const std::string& interface, in lookupAndCallMethod()
549 const std::string& method, Args&&... args) in lookupAndCallMethod()
558 sdbusplus::bus_t& bus, const std::string& path, in lookupCallMethodAndRead()
559 const std::string& interface, const std::string& method, Args&&... args) in lookupCallMethodAndRead()
569 const std::string& path, const std::string& interface, in lookupCallMethodAndRead()
570 const std::string& method, Args&&... args) in lookupCallMethodAndRead()