Home
last modified time | relevance | path

Searched refs:bus (Results 1 – 25 of 142) sorted by relevance

123456

/system/connectivity/shill/test-scripts/
Dshow-introspection5 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),
Ddebug-flimflam22 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,
Dtest-flimflam7 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 …]
Dtest-compat5 bus = dbus.SystemBus() variable
7 manager = dbus.Interface(bus.get_object('org.freedesktop.NetworkManager',
Dtest-manager18 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", "/"),
Dclaim-interface26 bus = dbus.SystemBus() variable
27 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
Drelease-interface26 bus = dbus.SystemBus() variable
27 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
Dmonitor-flimflam19 bus = dbus.SystemBus() variable
21 bus.add_signal_receiver(property_changed,
Dmonitor-services28 bus = dbus.SystemBus() variable
30 bus.add_signal_receiver(property_changed,
/system/connectivity/shill/shims/
Dopenvpn_script.cc48 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()
Dtask_proxy.cc28 TaskProxy::TaskProxy(scoped_refptr<dbus::Bus> bus, in TaskProxy() argument
31 : proxy_(bus, dbus::ObjectPath(path)) {} in TaskProxy()
/system/update_engine/
Ddaemon.cc59 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()
Dreal_system_state.cc40 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()
Dlibcros_proxy.cc39 LibCrosProxy::LibCrosProxy(const scoped_refptr<dbus::Bus>& bus) in LibCrosProxy() argument
41 new LibCrosServiceInterfaceProxy(bus, kLibCrosServiceName)), in LibCrosProxy()
44 bus, in LibCrosProxy()
Dshill_proxy.cc26 ShillProxy::ShillProxy(const scoped_refptr<dbus::Bus>& bus) : bus_(bus) {} in ShillProxy() argument
/system/core/init/
Ddevices.cpp277 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/
Dchromeos_rpc_task_dbus_adaptor.cc43 const scoped_refptr<dbus::Bus>& bus, in ChromeosRPCTaskDBusAdaptor() argument
46 ChromeosDBusAdaptor(bus, kPath + task->UniqueName()), in ChromeosRPCTaskDBusAdaptor()
48 connection_name_(bus->GetConnectionName()) { in ChromeosRPCTaskDBusAdaptor()
Dchromeos_dbus_service_watcher.cc22 scoped_refptr<dbus::Bus> bus, in ChromeosDBusServiceWatcher() argument
27 bus, connection_name, on_connection_vanished)) {} in ChromeosDBusServiceWatcher()
Ddbus_service_watcher_factory.cc36 scoped_refptr<dbus::Bus> bus, const std::string& connection_name, in CreateDBusServiceWatcher() argument
38 return new ChromeosDBusServiceWatcher(bus, connection_name, in CreateDBusServiceWatcher()
Dchromeos_upstart_proxy.cc31 ChromeosUpstartProxy::ChromeosUpstartProxy(const scoped_refptr<dbus::Bus>& bus) in ChromeosUpstartProxy() argument
33 new com::ubuntu::Upstart0_6Proxy(bus, kServiceName)) {} in ChromeosUpstartProxy()
Dchromeos_firewalld_proxy.cc27 const scoped_refptr<dbus::Bus>& bus) in ChromeosFirewalldProxy() argument
28 : proxy_(new org::chromium::FirewalldProxy(bus)) { in ChromeosFirewalldProxy()
/system/connectivity/apmanager/dbus/
Dmanager_dbus_adaptor.cc34 const scoped_refptr<dbus::Bus>& bus, in ManagerDBusAdaptor() argument
38 dbus_object_(object_manager, bus, ManagerAdaptor::GetObjectPath()), in ManagerDBusAdaptor()
39 bus_(bus), in ManagerDBusAdaptor()
Ddevice_dbus_adaptor.cc32 const scoped_refptr<dbus::Bus>& bus, in DeviceDBusAdaptor() argument
40 dbus_object_(object_manager, bus, object_path_) { in DeviceDBusAdaptor()
/system/webservd/webservd/
Dfirewalld_firewall.cc23 void FirewalldFirewall::WaitForServiceAsync(dbus::Bus* bus, in WaitForServiceAsync() argument
26 object_manager_.reset(new org::chromium::Firewalld::ObjectManagerProxy{bus}); in WaitForServiceAsync()
/system/webservd/libwebserv/
Dserver.cc31 const scoped_refptr<dbus::Bus>& bus, in ConnectToServerViaDBus() argument
38 server->Connect(bus, service_name, cb, on_server_online, on_server_offline); in ConnectToServerViaDBus()

123456