Lines Matching full:bus

1 #include <sdbusplus/bus.hpp>
4 namespace sdbusplus::bus namespace
7 void bus::emit_interfaces_added(const char* path, in emit_interfaces_added()
15 void bus::emit_interfaces_removed(const char* path, in emit_interfaces_removed()
23 /* Create a new default connection: system bus if root, session bus if user. */
24 bus new_default() in new_default()
32 return bus(b, std::false_type()); in new_default()
35 /* Create a new default connection to the session bus. */
36 bus new_default_user() in new_default_user()
44 return bus(b, std::false_type()); in new_default_user()
47 /* Create a new default connection to the system bus. */
48 bus new_default_system() in new_default_system()
56 return bus(b, std::false_type()); in new_default_system()
59 /* Create a new connection: system bus if root, session bus if user. */
60 bus new_bus() in new_bus()
68 bus bus(b, std::false_type()); in new_bus() local
69 bus.set_should_close(true); in new_bus()
70 return bus; in new_bus()
73 /* Create a new connection to the session bus. */
74 bus new_user() in new_user()
82 bus bus(b, std::false_type()); in new_user() local
83 bus.set_should_close(true); in new_user()
84 return bus; in new_user()
87 /* Create a new connection to the system bus. */
88 bus new_system() in new_system()
96 bus bus(b, std::false_type()); in new_system() local
97 bus.set_should_close(true); in new_system()
98 return bus; in new_system()
101 bus::bus(busp_t b, sdbusplus::SdBusInterface* intf) : in bus() function in sdbusplus::bus::bus
106 // the bus isn't up far enough, this causes an assert deep in in bus()
107 // sd-bus code. Get the 'unique_name' to ensure the bus is up far in bus()
115 bus::bus(busp_t b) : in bus() function in sdbusplus::bus::bus
121 // the bus isn't up far enough, this causes an assert deep in in bus()
122 // sd-bus code. Get the 'unique_name' to ensure the bus is up far in bus()
130 bus::bus(busp_t b, std::false_type) : in bus() function in sdbusplus::bus::bus
135 // the bus isn't up far enough, this causes an assert deep in in bus()
136 // sd-bus code. Get the 'unique_name' to ensure the bus is up far in bus()
144 void bus::watchdog_pet() in watchdog_pet()
153 void bus::watchdog_trigger() in watchdog_trigger()
162 uint64_t bus::watchdog_enabled() in watchdog_enabled()
173 } // namespace sdbusplus::bus