/system/connectivity/shill/test-scripts/ |
D | show-introspection | 5 bus = dbus.SystemBus() variable 7 flimflam_object = dbus.Interface(bus.get_object("org.chromium.flimflam", '/'), 11 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"), 16 device = dbus.Interface(bus.get_object("org.chromium.flimflam", path), 21 bus.get_object("org.chromium.flimflam", path), 26 bus.get_object("org.chromium.flimflam", ipconfig_path),
|
D | debug-flimflam | 22 bus = dbus.SystemBus() variable 24 bus.add_signal_receiver(element_signal, 29 bus.add_signal_receiver(element_signal, 34 bus.add_signal_receiver(element_signal,
|
D | test-flimflam | 7 bus = dbus.SystemBus() variable 9 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"), 59 bus.get_object("org.chromium.flimflam", object_path), 94 bus.get_object("org.chromium.flimflam", object_path), 113 bus.get_object("org.chromium.flimflam", object_path), 129 bus.get_object("org.chromium.flimflam", object_path), 170 service = dbus.Interface(bus.get_object("org.chromium.flimflam", path), 200 service = dbus.Interface(bus.get_object("org.chromium.flimflam", path), 231 service = dbus.Interface(bus.get_object("org.chromium.flimflam", path), 246 service = dbus.Interface(bus.get_object("org.chromium.flimflam", path), [all …]
|
D | test-compat | 5 bus = dbus.SystemBus() variable 7 manager = dbus.Interface(bus.get_object('org.freedesktop.NetworkManager',
|
D | test-manager | 18 obj = dbus.Interface(bus.get_object("org.chromium.flimflam", path), 70 bus = dbus.SystemBus() variable 72 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
|
D | claim-interface | 26 bus = dbus.SystemBus() variable 27 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
|
D | release-interface | 26 bus = dbus.SystemBus() variable 27 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
|
D | monitor-flimflam | 19 bus = dbus.SystemBus() variable 21 bus.add_signal_receiver(property_changed,
|
D | monitor-services | 28 bus = dbus.SystemBus() variable 30 bus.add_signal_receiver(property_changed,
|
/system/connectivity/shill/shims/ |
D | openvpn_script.cc | 48 scoped_refptr<dbus::Bus> bus; in main() local 51 bus = new dbus::Bus(options); in main() 52 CHECK(bus->Connect()); in main() 54 shill::shims::TaskProxy proxy(bus, path, service); in main() 57 if (bus) { in main() 58 bus->ShutdownAndBlock(); in main()
|
D | task_proxy.cc | 28 TaskProxy::TaskProxy(scoped_refptr<dbus::Bus> bus, in TaskProxy() argument 31 : proxy_(bus, dbus::ObjectPath(path)) {} in TaskProxy()
|
/system/update_engine/ |
D | daemon.cc | 59 scoped_refptr<dbus::Bus> bus = dbus_connection_.ConnectWithTimeout( in OnInit() local 62 if (!bus) { in OnInit() 69 CHECK(bus->SetUpAsyncOperations()); in OnInit() 77 RealSystemState* real_system_state = new RealSystemState(bus); in OnInit() 107 dbus_adaptor_.reset(new UpdateEngineAdaptor(real_system_state, bus)); in OnInit()
|
D | real_system_state.cc | 40 RealSystemState::RealSystemState(const scoped_refptr<dbus::Bus>& bus) in RealSystemState() argument 41 : debugd_proxy_(bus), in RealSystemState() 42 power_manager_proxy_(bus), in RealSystemState() 43 session_manager_proxy_(bus), in RealSystemState() 44 shill_proxy_(bus), in RealSystemState() 45 libcros_proxy_(bus) { in RealSystemState()
|
D | libcros_proxy.cc | 39 LibCrosProxy::LibCrosProxy(const scoped_refptr<dbus::Bus>& bus) in LibCrosProxy() argument 41 new LibCrosServiceInterfaceProxy(bus, kLibCrosServiceName)), in LibCrosProxy() 44 bus, in LibCrosProxy()
|
D | shill_proxy.cc | 26 ShillProxy::ShillProxy(const scoped_refptr<dbus::Bus>& bus) : bus_(bus) {} in ShillProxy() argument
|
/system/core/init/ |
D | devices.cpp | 277 struct platform_node *bus; in add_platform_device() local 288 bus = (platform_node*) calloc(1, sizeof(struct platform_node)); in add_platform_device() 289 bus->path = strdup(path); in add_platform_device() 290 bus->path_len = path_len; in add_platform_device() 291 bus->name = bus->path + (name - path); in add_platform_device() 292 list_add_tail(&platform_names, &bus->list); in add_platform_device() 304 struct platform_node *bus; in find_platform_device() local 307 bus = node_to_item(node, struct platform_node, list); in find_platform_device() 308 if ((bus->path_len < path_len) && in find_platform_device() 309 (path[bus->path_len] == '/') && in find_platform_device() [all …]
|
/system/connectivity/shill/dbus/ |
D | chromeos_rpc_task_dbus_adaptor.cc | 43 const scoped_refptr<dbus::Bus>& bus, in ChromeosRPCTaskDBusAdaptor() argument 46 ChromeosDBusAdaptor(bus, kPath + task->UniqueName()), in ChromeosRPCTaskDBusAdaptor() 48 connection_name_(bus->GetConnectionName()) { in ChromeosRPCTaskDBusAdaptor()
|
D | chromeos_dbus_service_watcher.cc | 22 scoped_refptr<dbus::Bus> bus, in ChromeosDBusServiceWatcher() argument 27 bus, connection_name, on_connection_vanished)) {} in ChromeosDBusServiceWatcher()
|
D | dbus_service_watcher_factory.cc | 36 scoped_refptr<dbus::Bus> bus, const std::string& connection_name, in CreateDBusServiceWatcher() argument 38 return new ChromeosDBusServiceWatcher(bus, connection_name, in CreateDBusServiceWatcher()
|
D | chromeos_upstart_proxy.cc | 31 ChromeosUpstartProxy::ChromeosUpstartProxy(const scoped_refptr<dbus::Bus>& bus) in ChromeosUpstartProxy() argument 33 new com::ubuntu::Upstart0_6Proxy(bus, kServiceName)) {} in ChromeosUpstartProxy()
|
D | chromeos_firewalld_proxy.cc | 27 const scoped_refptr<dbus::Bus>& bus) in ChromeosFirewalldProxy() argument 28 : proxy_(new org::chromium::FirewalldProxy(bus)) { in ChromeosFirewalldProxy()
|
/system/connectivity/apmanager/dbus/ |
D | manager_dbus_adaptor.cc | 34 const scoped_refptr<dbus::Bus>& bus, in ManagerDBusAdaptor() argument 38 dbus_object_(object_manager, bus, ManagerAdaptor::GetObjectPath()), in ManagerDBusAdaptor() 39 bus_(bus), in ManagerDBusAdaptor()
|
D | device_dbus_adaptor.cc | 32 const scoped_refptr<dbus::Bus>& bus, in DeviceDBusAdaptor() argument 40 dbus_object_(object_manager, bus, object_path_) { in DeviceDBusAdaptor()
|
/system/webservd/webservd/ |
D | firewalld_firewall.cc | 23 void FirewalldFirewall::WaitForServiceAsync(dbus::Bus* bus, in WaitForServiceAsync() argument 26 object_manager_.reset(new org::chromium::Firewalld::ObjectManagerProxy{bus}); in WaitForServiceAsync()
|
/system/webservd/libwebserv/ |
D | server.cc | 31 const scoped_refptr<dbus::Bus>& bus, in ConnectToServerViaDBus() argument 38 server->Connect(bus, service_name, cb, on_server_online, on_server_offline); in ConnectToServerViaDBus()
|