blob: 9de1de9b7b26d59db976da6f3606e023088505e0 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
 | BlueZ D-Bus Manager API description
***********************************
Copyright (C) 2004-2008  Marcel Holtmann <marcel@holtmann.org>
Copyright (C) 2005-2006  Johan Hedberg <johan.hedberg@nokia.com>
Copyright (C) 2005-2006  Claudio Takahasi <claudio.takahasi@indt.org.br>
Copyright (C) 2006-2007  Luiz von Dentz <luiz.dentz@indt.org.br>
Manager hierarchy
=================
Service		org.bluez
Interface	org.bluez.Manager
Object path	/org/bluez
Methods		string DefaultAdapter()
			Returns object path for the default adapter.
			Possible errors: org.bluez.Error.InvalidArguments
					 org.bluez.Error.NoSuchAdapter
		string FindAdapter(string pattern)
			Returns object path for the specified adapter. Valid
			patterns are "hci0" or "00:11:22:33:44:55".
			Possible errors: org.bluez.Error.InvalidArguments
					 org.bluez.Error.NoSuchAdapter
		array{string} ListAdapters()
			Returns list of adapter object paths under /org/bluez
			Possible errors: org.bluez.Error.InvalidArguments
					 org.bluez.Error.Failed
					 org.bluez.Error.OutOfMemory
Signals		AdapterAdded(string path)
			Parameter is object path of added adapter.
		AdapterRemoved(string path)
			Parameter is object path of removed adapter.
		DefaultAdapterChanged(string path)
			Parameter is object path of the new default adapter,
			or an empty string if there is no available adapters.
 |