HomeSort by relevance Sort by last modified time
    Searched defs:bus (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /external/dhcpcd-6.8.2/dbus/test/
introspection 5 bus = dbus.SystemBus() variable
7 object = dbus.Interface(bus.get_object("org.chromium.dhcpcd", '/'),
  /external/libusb-compat/examples/
lsusb.c 26 struct usb_bus *bus; local
33 for (bus = busses; bus; bus = bus->next) {
35 for (dev = bus->devices; dev; dev = dev->next) {
testlibusb.c 131 struct usb_bus *bus; local
141 for (bus = usb_busses; bus; bus = bus->next) {
142 if (bus->root_dev && !verbose)
143 print_device(bus->root_dev, 0);
147 for (dev = bus->devices; dev; dev = dev->next)
  /system/connectivity/shill/test-scripts/
claim-interface 26 bus = dbus.SystemBus() variable
27 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
release-interface 26 bus = dbus.SystemBus() variable
27 manager = dbus.Interface(bus.get_object("org.chromium.flimflam", "/"),
test-compat 5 bus = dbus.SystemBus() variable
7 manager = dbus.Interface(bus.get_object('org.freedesktop.NetworkManager',
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", "/"),
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,
monitor-flimflam 19 bus = dbus.SystemBus() variable
21 bus.add_signal_receiver(property_changed,
monitor-services 28 bus = dbus.SystemBus() variable
30 bus.add_signal_receiver(property_changed,
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),
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...]
  /external/guava/guava-tests/test/com/google/common/eventbus/outside/
OutsideEventBusTest.java 42 EventBus bus = new EventBus(); local
43 bus.register(new Object() {
52 bus.post(EVENT);
  /external/libbrillo/brillo/dbus/
dbus_connection.cc 26 scoped_refptr<dbus::Bus> DBusConnection::Connect() {
30 scoped_refptr<dbus::Bus> DBusConnection::ConnectWithTimeout(
37 dbus::Bus::Options options;
38 options.bus_type = dbus::Bus::SYSTEM;
40 scoped_refptr<dbus::Bus> bus = new dbus::Bus(options); local
43 if (bus->Connect()) {
44 bus_ = bus;
47 LOG(WARNING) << "Failed to get system bus."
    [all...]
  /system/connectivity/shill/shims/
openvpn_script.cc 48 scoped_refptr<dbus::Bus> bus; local
49 dbus::Bus::Options options;
50 options.bus_type = dbus::Bus::SYSTEM;
51 bus = new dbus::Bus(options);
52 CHECK(bus->Connect());
54 shill::shims::TaskProxy proxy(bus, path, service);
57 if (bus) {
58 bus->ShutdownAndBlock()
    [all...]
  /system/update_engine/
daemon.cc 57 // We wait for the D-Bus connection for up two minutes to avoid re-spawning
59 scoped_refptr<dbus::Bus> bus = dbus_connection_.ConnectWithTimeout( local
62 if (!bus) {
69 CHECK(bus->SetUpAsyncOperations());
75 // avoiding the explicit re-usage of the |bus| instance, shared between
76 // D-Bus service and D-Bus client calls.
77 RealSystemState* real_system_state = new RealSystemState(bus);
107 dbus_adaptor_.reset(new UpdateEngineAdaptor(real_system_state, bus));
    [all...]
  /external/dbus/test/name-test/
test-wait-for-echo.py 26 bus = dbus.SessionBus() variable
32 bus.add_signal_receiver(sighandler, dbus_interface='org.freedesktop.TestSuite', signal_name='Foo')
34 o = bus.get_object('org.freedesktop.DBus.TestSuiteEchoService', '/org/freedesktop/TestSuite')
test-activation-forking.py 18 bus = dbus.SessionBus() variable
19 bus_iface = dbus.Interface(bus.get_object('org.freedesktop.DBus', '/org/freedesktop/DBus'), 'org.freedesktop.DBus')
21 o = bus.get_object('org.freedesktop.DBus.TestSuiteForkingEchoService', '/org/freedesktop/TestSuite')
44 o = bus.get_object('org.freedesktop.DBus.TestSuiteForkingEchoService', '/org/freedesktop/TestSuite')
  /external/skia/src/core/
SkMessageBus.h 50 SK_DECLARE_STATIC_ONCE_PTR(SkMessageBus<Message>, bus); \
53 return bus.get([]{ return new SkMessageBus<Message>(); }); \
60 // Register ourselves with the corresponding message bus.
61 SkMessageBus<Message>* bus = SkMessageBus<Message>::Get(); local
62 SkAutoMutexAcquire lock(bus->fInboxesMutex);
63 bus->fInboxes.push(this);
68 // Remove ourselves from the corresponding message bus.
69 SkMessageBus<Message>* bus = SkMessageBus<Message>::Get(); local
70 SkAutoMutexAcquire lock(bus->fInboxesMutex);
72 for (int i = 0; i < bus->fInboxes.count(); i++)
101 SkMessageBus<Message>* bus = SkMessageBus<Message>::Get(); local
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
sms_handler.py 33 def __init__(self, modem, bus=None):
36 self._bus = bus
40 def bus(self): member in class:SmsHandler
42 Returns the current bus assigned to this object. This is the bus
45 @returns: An instance of dbus.Bus.
51 @bus.setter
52 def bus(self, bus): member in class:SmsHandler
54 Sets the current bus on which SMS objects should be created
    [all...]
  /external/guava/guava-tests/test/com/google/common/eventbus/
AsyncEventBusTest.java 36 private AsyncEventBus bus; field in class:AsyncEventBusTest
41 bus = new AsyncEventBus(executor);
46 bus.register(catcher);
49 bus.post(EVENT);
EventBusTest.java 39 private static final String BUS_IDENTIFIER = "test-bus";
41 private EventBus bus; field in class:EventBusTest
45 bus = new EventBus(BUS_IDENTIFIER);
50 bus.register(catcher);
51 bus.post(EVENT);
86 bus.register(stringCatcher);
87 bus.register(objCatcher);
88 bus.register(compCatcher);
94 bus.post(EVENT);
95 bus.post(OBJ_EVENT)
338 private final EventBus bus; field in class:EventBusTest.Registrator
    [all...]
  /external/valgrind/include/vki/
vki-xen-physdev.h 47 int bus; member in struct:vki_xen_physdev_map_pirq
  /hardware/bsp/intel/peripheral/libmraa/src/x86/
intel_minnow_byt_compatible.c 177 int bus = mraa_find_i2c_bus(I2CNAME, 0); local
178 if (bus == -1) {
181 b->def_i2c_bus = bus;
  /external/autotest/client/cros/tendo/n_faced_peerd/
manager.py 7 import dbus.bus namespace
19 # A tuple of a bus name that sent us an ExposeService message, and an
20 # object responsible for watching for the death of that bus name's
33 def __init__(self, bus, ip_address, on_service_modified, unique_name,
37 @param bus: dbus.Bus object to export this object on.
46 super(Manager, self).__init__(bus,
49 self._bus = bus
55 # A map from service_ids to dbus.bus.NameOwnerWatch objects.
68 dbus.bus.REQUEST_NAME_REPLY_PRIMARY_OWNER)
    [all...]

Completed in 1074 milliseconds

1 2 3 4 5 6 7 8 9