Created
December 14, 2016 15:02
-
-
Save evadeflow/8ae65f6874b8dd5b0802a5a947ad3cee to your computer and use it in GitHub Desktop.
Result of ofono introspection using gdbus
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node / { | |
interface org.freedesktop.DBus.Introspectable { | |
methods: | |
Introspect(out s xml); | |
signals: | |
properties: | |
}; | |
interface org.ofono.Manager { | |
methods: | |
GetModems(out a(oa{sv}) modems); | |
signals: | |
ModemAdded(o path, | |
a{sv} properties); | |
ModemRemoved(o path); | |
properties: | |
}; | |
interface org.ofono.HandsfreeAudioManager { | |
methods: | |
GetCards(out a{oa{sv}} cards); | |
Register(in o path, | |
in ay codecs); | |
Unregister(in o path); | |
signals: | |
CardAdded(o path, | |
a{sv} properties); | |
CardRemoved(o path); | |
properties: | |
}; | |
node /bluetooth { | |
node /bluetooth/profile { | |
node /bluetooth/profile/dun_gw { | |
interface org.freedesktop.DBus.Introspectable { | |
methods: | |
Introspect(out s xml); | |
signals: | |
properties: | |
}; | |
interface org.bluez.Profile1 { | |
methods: | |
NewConnection(in o device, | |
in h fd, | |
in a{sv} fd_properties); | |
Release(); | |
Cancel(); | |
RequestDisconnection(in o device); | |
signals: | |
properties: | |
}; | |
}; | |
node /bluetooth/profile/hfp_ag { | |
interface org.freedesktop.DBus.Introspectable { | |
methods: | |
Introspect(out s xml); | |
signals: | |
properties: | |
}; | |
interface org.bluez.Profile1 { | |
methods: | |
NewConnection(in o device, | |
in h fd, | |
in a{sv} fd_properties); | |
Release(); | |
Cancel(); | |
RequestDisconnection(in o device); | |
signals: | |
properties: | |
}; | |
}; | |
node /bluetooth/profile/hfp_hf { | |
interface org.freedesktop.DBus.Introspectable { | |
methods: | |
Introspect(out s xml); | |
signals: | |
properties: | |
}; | |
interface org.bluez.Profile1 { | |
methods: | |
NewConnection(in o device, | |
in h fd, | |
in a{sv} fd_properties); | |
@org.freedesktop.DBus.Method.NoReply("true") | |
Release(); | |
RequestDisconnection(in o device); | |
signals: | |
properties: | |
}; | |
}; | |
}; | |
}; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment