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

1 2

  /external/bluetooth/bluez/test/
dbusdef.py 1 import dbus namespace
3 bus = dbus.SystemBus()
6 dummy = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.freedesktop.DBus.Introspectable')
11 manager = dbus.Interface(bus.get_object('org.bluez', '/'), 'org.bluez.Manager')
14 adapter = dbus.Interface(bus.get_object('org.bluez', manager.DefaultAdapter()), 'org.bluez.Adapter')
test-manager 5 import dbus namespace
6 import dbus.mainloop.glib namespace
18 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
20 bus = dbus.SystemBus()
22 manager = dbus.Interface(bus.get_object('org.bluez', '/'),
test-oob 5 import dbus.mainloop.glib namespace
16 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
20 bus = dbus.SystemBus()
21 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
27 adapter0 = dbus.Interface(bus.get_object("org.bluez", adapter0_path),
29 adapter1 = dbus.Interface(bus.get_object("org.bluez", adapter1_path),
57 oob_adapter0 = dbus.Interface(bus.get_object("org.bluez",
59 oob_adapter1 = dbus.Interface(bus.get_object("org.bluez",
simple-service 5 import dbus namespace
103 bus = dbus.SystemBus()
104 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
112 service = dbus.Interface(bus.get_object("org.bluez", path),
127 service.RemoveRecord(dbus.UInt32(handle))
test-discovery 5 import dbus namespace
6 import dbus.mainloop.glib namespace
24 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
26 bus = dbus.SystemBus()
27 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
43 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
list-devices 3 import dbus namespace
5 bus = dbus.SystemBus()
7 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
33 adapter = dbus.Interface(bus.get_object("org.bluez", i),
55 device = dbus.Interface(bus.get_object("org.bluez", n),
79 node = dbus.Interface(bus.get_object("org.bluez", x),
monitor-bluetooth 5 import dbus namespace
6 import dbus.mainloop.glib namespace
19 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
21 bus = dbus.SystemBus()
test-adapter 4 import dbus namespace
8 bus = dbus.SystemBus()
10 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
25 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
60 value = dbus.Boolean(1)
62 value = dbus.Boolean(0)
64 value = dbus.Boolean(args[1])
74 value = dbus.Boolean(1)
76 value = dbus.Boolean(0)
78 value = dbus.Boolean(args[1]
    [all...]
test-audio 4 import dbus namespace
7 bus = dbus.SystemBus()
9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
24 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
36 audio = dbus.Interface(bus.get_object("org.bluez", device),
test-input 4 import dbus namespace
7 bus = dbus.SystemBus()
9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
24 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
36 input = dbus.Interface(bus.get_object("org.bluez", device),
test-nap 5 import dbus namespace
8 bus = dbus.SystemBus()
10 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
26 server = dbus.Interface(bus.get_object("org.bluez", adapter_path),
test-network 5 import dbus namespace
8 bus = dbus.SystemBus()
10 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
26 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
42 network = dbus.Interface(bus.get_object("org.bluez", device),
test-serial 5 import dbus namespace
8 bus = dbus.SystemBus()
10 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
25 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
41 serial = dbus.Interface(bus.get_object("org.bluez", path),
test-service 4 import dbus namespace
8 bus = dbus.SystemBus()
10 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
25 service = dbus.Interface(bus.get_object("org.bluez", adapter_path),
test-telephony 4 import dbus namespace
7 bus = dbus.SystemBus()
9 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
24 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
27 test = dbus.Interface(bus.get_object("org.bluez", "/org/bluez/test"),
55 headset = dbus.Interface(bus.get_object("org.bluez", device),
65 headset = dbus.Interface(bus.get_object("org.bluez", device),
75 headset = dbus.Interface(bus.get_object("org.bluez", device),
78 headset.SetProperty('SpeakerGain', dbus.UInt16(args[2]))
90 headset = dbus.Interface(bus.get_object("org.bluez", device)
    [all...]
test-health-sink 4 import dbus namespace
5 import dbus.service namespace
7 from dbus.mainloop.glib import DBusGMainLoop
13 bus = dbus.SystemBus()
15 hdp_manager = dbus.Interface(bus.get_object("org.bluez", "/org/bluez"),
17 app_path = hdp_manager.CreateApplication({"DataType": dbus.types.UInt16(4103),
22 manager = dbus.Interface(bus.get_object("org.bluez", "/"),
45 adapter = dbus.Interface(bus.get_object("org.bluez", select),
73 device = dbus.Interface(bus.get_object("org.bluez", select),
simple-agent 6 import dbus namespace
7 import dbus.service namespace
8 import dbus.mainloop.glib namespace
10 class Rejected(dbus.DBusException):
13 class Agent(dbus.service.Object):
19 @dbus.service.method("org.bluez.Agent",
26 @dbus.service.method("org.bluez.Agent",
35 @dbus.service.method("org.bluez.Agent",
41 @dbus.service.method("org.bluez.Agent",
46 return dbus.UInt32(passkey
    [all...]
test-attrib 11 import dbus namespace
12 import dbus.mainloop.glib namespace
15 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
16 bus = dbus.SystemBus()
19 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
34 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
48 device = dbus.Interface(bus.get_object("org.bluez", path),
54 service = dbus.Interface(bus.get_object("org.bluez", path),
72 device = dbus.Interface(bus.get_object("org.bluez", path),
83 service = dbus.Interface(bus.get_object("org.bluez", args[1])
    [all...]
test-device 6 import dbus namespace
7 import dbus.mainloop.glib namespace
11 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
12 bus = dbus.SystemBus()
15 manager = dbus.Interface(bus.get_object("org.bluez", "/"), "org.bluez.Manager")
30 adapter = dbus.Interface(bus.get_object("org.bluez", adapter_path),
51 device = dbus.Interface(bus.get_object("org.bluez", path),
93 device = dbus.Interface(bus.get_object("org.bluez", path),
103 device = dbus.Interface(bus.get_object("org.bluez", path),
123 device = dbus.Interface(bus.get_object("org.bluez", path)
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/examples/
wpas-dbus-new-getall.py 3 import dbus namespace
9 bus = dbus.SystemBus()
13 dbus_interface=dbus.PROPERTIES_IFACE)
22 wpas = dbus.Interface(wpas_obj, "fi.w1.wpa_supplicant1")
26 dbus_interface=dbus.PROPERTIES_IFACE)
32 dbus_interface=dbus.PROPERTIES_IFACE)
38 dbus_interface=dbus.PROPERTIES_IFACE)
42 dbus_interface=dbus.PROPERTIES_IFACE)
48 dbus_interface=dbus.PROPERTIES_IFACE)
52 dbus_interface=dbus.PROPERTIES_IFACE
    [all...]
wpas-test.py 3 import dbus namespace
32 bus = dbus.SystemBus()
34 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
40 except dbus.dbus_bindings.DBusException, exc:
44 path = wpas.addInterface(ifname, {'driver': dbus.Variant('wext')})
45 except dbus.dbus_bindings.DBusException, exc:
50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
59 net = dbus.Interface(net_obj, WPAS_DBUS_BSSID_INTERFACE)
85 wpas.removeInterface(dbus.ObjectPath(path))
wpas-dbus-new-wps.py 3 import dbus namespace
7 from dbus.mainloop.glib import DBusGMainLoop
37 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
39 bus = dbus.SystemBus()
46 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
71 dbus.Boolean(1),
72 dbus_interface=dbus.PROPERTIES_IFACE)
73 wps = dbus.Interface(if_obj, WPAS_DBUS_WPS_INTERFACE)
  /external/dbus/test/name-test/
test-wait-for-echo.py 7 import dbus namespace
8 import dbus.mainloop.glib namespace
13 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
26 bus = dbus.SessionBus()
34 o = bus.get_object('org.freedesktop.DBus.TestSuiteEchoService', '/org/freedesktop/TestSuite')
35 i = dbus.Interface(o, 'org.freedesktop.TestSuite')
test-activation-forking.py 7 import dbus namespace
8 import dbus.mainloop.glib namespace
13 dbus.mainloop.glib.DBusGMainLoop(set_as_default=True)
18 bus = dbus.SessionBus()
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')
22 i = dbus.Interface(o, 'org.freedesktop.TestSuite'
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/examples/
wpas-test.py 3 import dbus namespace
32 bus = dbus.SystemBus()
34 wpas = dbus.Interface(wpas_obj, WPAS_DBUS_INTERFACE)
40 except dbus.dbus_bindings.DBusException, exc:
44 path = wpas.addInterface(ifname, {'driver': dbus.Variant('wext')})
45 except dbus.dbus_bindings.DBusException, exc:
50 iface = dbus.Interface(if_obj, WPAS_DBUS_INTERFACES_INTERFACE)
59 net = dbus.Interface(net_obj, WPAS_DBUS_BSSID_INTERFACE)
85 wpas.removeInterface(dbus.ObjectPath(path))

Completed in 127 milliseconds

1 2