Skip to content

Instantly share code, notes, and snippets.

@evadeflow
Created December 14, 2016 15:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evadeflow/8ae65f6874b8dd5b0802a5a947ad3cee to your computer and use it in GitHub Desktop.
Save evadeflow/8ae65f6874b8dd5b0802a5a947ad3cee to your computer and use it in GitHub Desktop.
Result of ofono introspection using gdbus
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