Home | History | Annotate | Download | only in dbus

Lines Matching refs:Bus

17 #include "dbus/bus.h"
44 // Start the D-Bus thread.
45 dbus_thread_.reset(new base::Thread("D-Bus Thread"));
50 // Start the test service, using the D-Bus thread.
58 // Create the client, using the D-Bus thread.
59 Bus::Options bus_options;
60 bus_options.bus_type = Bus::SESSION;
61 bus_options.connection_type = Bus::PRIVATE;
65 bus_ = new Bus(bus_options);
87 // the shutdown of Bus when an object proxy is connected to more than
134 // Replaces the bus with a broken one.
136 // Shut down the existing bus.
139 // Create new bus with invalid address.
141 Bus::Options bus_options;
142 bus_options.bus_type = Bus::CUSTOM_ADDRESS;
144 bus_options.connection_type = Bus::PRIVATE;
146 bus_ = new Bus(bus_options);
269 scoped_refptr<Bus> bus_;
359 // Set up a broken bus.
372 // Should fail because of the broken bus.
379 // Set up a broken bus.
392 // Should fail because of the broken bus.
516 // Bus name cannot contain '/'.
529 // Should fail because of the invalid bus name.
593 base::Bind(&Bus::ClosePrivateConnection,