/external/chromium_org/dbus/ |
mock_bus.cc | 11 MockBus::MockBus(const Bus::Options& options) : Bus(options) {
|
mock_exported_object.cc | 9 MockExportedObject::MockExportedObject(Bus* bus, 11 : ExportedObject(bus, object_path) {
|
bus.cc | 5 #include "dbus/bus.h" 41 // The class is used for watching the file descriptor used for D-Bus 102 // The class is used for monitoring the timeout used for D-Bus method 108 // Bus::OnRemoveTimeout(). That's why we don't simply delete the object in 109 // Bus::OnRemoveTimeout(). 126 void StartMonitoring(Bus* bus) { 127 bus->GetDBusTaskRunner()->PostDelayedTask( 163 // occur if this function is called after Bus::OnRemoveTimeout(). 181 Bus::Options::Options( [all...] |
bus_unittest.cc | 5 #include "dbus/bus.h" 77 Bus::Options options; 78 scoped_refptr<Bus> bus = new Bus(options); local 81 bus->GetObjectProxy("org.chromium.TestService", 87 bus->GetObjectProxy("org.chromium.TestService", 94 bus->GetObjectProxy( 100 bus->ShutdownAndBlock(); 104 Bus::Options options 105 scoped_refptr<Bus> bus = new Bus(options); local 148 scoped_refptr<Bus> bus = new Bus(options); local 196 scoped_refptr<Bus> bus = new Bus(options); local 228 scoped_refptr<Bus> bus = new Bus(options); local 260 scoped_refptr<Bus> bus = new Bus(options); local 278 scoped_refptr<Bus> bus = new Bus(options); local 289 scoped_refptr<Bus> bus = new Bus(options); local 310 scoped_refptr<Bus> bus = new Bus(options); local 355 scoped_refptr<Bus> bus = new Bus(bus_options); local [all...] |
mock_object_manager.cc | 9 MockObjectManager::MockObjectManager(Bus* bus, 12 : ObjectManager(bus, service_name, object_path) {
|
mock_object_proxy.cc | 9 MockObjectProxy::MockObjectProxy(Bus* bus, 12 : ObjectProxy(bus, service_name, object_path, DEFAULT_OPTIONS) {
|
object_proxy_unittest.cc | 8 #include "dbus/bus.h" 19 Bus::Options bus_options; 20 bus_options.bus_type = Bus::SESSION; 21 bus_options.connection_type = Bus::PRIVATE; 22 bus_ = new Bus(bus_options); 33 scoped_refptr<Bus> bus_;
|
mock_exported_object.h | 19 MockExportedObject(Bus* bus,
|
end_to_end_sync_unittest.cc | 7 #include "dbus/bus.h" 33 Bus::Options client_bus_options; 34 client_bus_options.bus_type = Bus::SESSION; 35 client_bus_options.connection_type = Bus::PRIVATE; 36 client_bus_ = new Bus(client_bus_options); 51 scoped_refptr<Bus> client_bus_; 127 // Bus name cannot contain '/'.
|
exported_object.h | 24 class Bus; 29 // ExportedObject is used to export objects and methods to other D-Bus 37 // Client code should use Bus::GetExportedObject() instead of this 39 ExportedObject(Bus* bus, const ObjectPath& object_path); 87 // asynchronously from the message loop in the D-Bus thread. 90 // Unregisters the object from the bus. The Bus object will take care of 119 // Registers this object to the bus. 160 scoped_refptr<Bus> bus_ [all...] |
/external/chromium_org/chromeos/dbus/ |
dbus_client.h | 11 class Bus; 28 virtual void Init(dbus::Bus* bus) = 0;
|
blocking_method_caller.h | 15 class Bus; 22 // A utility class to call D-Bus methods in a synchronous (blocking) way. 27 BlockingMethodCaller(dbus::Bus* bus, dbus::ObjectProxy* proxy); 34 dbus::Bus* bus_;
|
fake_image_burner_client.cc | 15 void FakeImageBurnerClient::Init(dbus::Bus* bus) {
|
fake_introspectable_client.cc | 17 void FakeIntrospectableClient::Init(dbus::Bus* bus) {}
|
fake_introspectable_client.h | 21 virtual void Init(dbus::Bus* bus) OVERRIDE;
|
fake_permission_broker_client.cc | 15 void FakePermissionBrokerClient::Init(dbus::Bus* bus) {}
|
fake_permission_broker_client.h | 19 virtual void Init(dbus::Bus* bus) OVERRIDE;
|
fake_system_clock_client.cc | 15 void FakeSystemClockClient::Init(dbus::Bus* bus) {
|
fake_system_clock_client.h | 19 virtual void Init(dbus::Bus* bus) OVERRIDE;
|
fake_image_burner_client.h | 21 virtual void Init(dbus::Bus* bus) OVERRIDE;
|
fake_sms_client.h | 20 virtual void Init(dbus::Bus* bus) OVERRIDE;
|
/external/chromium_org/chrome/browser/chromeos/dbus/ |
cros_dbus_service.h | 14 class Bus; 20 // CrosDBusService is used to run a D-Bus service inside Chrome for Chrome 27 // used in the D-Bus constants such as the service name. 29 // CrosDBusService exports D-Bus methods through service provider classes 39 // D-Bus methods. 59 dbus::Bus* bus,
|
cros_dbus_service.cc | 16 #include "dbus/bus.h" 32 explicit CrosDBusServiceImpl(dbus::Bus* bus) 35 bus_(bus) { 42 // Starts the D-Bus service. 61 dbus::Bus::REQUIRE_PRIMARY_ALLOW_REPLACEMENT, 96 dbus::Bus* bus_; 120 dbus::Bus* bus = DBusThreadManager::Get()->GetSystemBus(); local 121 if (base::SysInfo::IsRunningOnChromeOS() && bus) { [all...] |
/external/chromium_org/content/browser/geolocation/ |
wifi_data_provider_linux.h | 13 class Bus; 32 WlanApiInterface* NewWlanApiForTesting(dbus::Bus* bus);
|
/external/chromium_org/chrome/browser/password_manager/ |
native_backend_kwallet_x.h | 30 class Bus; 61 // Internally used by Init(), but also for testing to provide a mock bus. 62 bool InitWithBus(scoped_refptr<dbus::Bus> optional_bus); 79 void InitOnDBThread(scoped_refptr<dbus::Bus> optional_bus, 150 scoped_refptr<dbus::Bus> session_bus_;
|