Home | History | Annotate | Download | only in geolocation

Lines Matching refs:Bus

6 // Currently, only the NetworkManager API is used, accessed via D-Bus (in turn
15 #include "dbus/bus.h"
50 // Similar to Init() but can inject the bus object. Used for testing.
51 bool InitWithBus(dbus::Bus* bus);
55 // This function makes blocking D-Bus calls, but it's totally fine as
77 scoped_refptr<dbus::Bus> system_bus_;
106 dbus::Bus::Options options;
107 options.bus_type = dbus::Bus::SYSTEM;
108 options.connection_type = dbus::Bus::PRIVATE;
109 return InitWithBus(new dbus::Bus(options));
112 bool NetworkManagerWlanApi::InitWithBus(dbus::Bus* bus) {
113 system_bus_ = bus;
114 // system_bus_ will own all object proxies created from the bus.
374 WifiDataProviderLinux::NewWlanApiForTesting(dbus::Bus* bus) {
376 if (wlan_api->InitWithBus(bus))