Function: dbus-list-names
dbus-list-names is a byte-compiled function defined in dbus.el.gz.
Signature
(dbus-list-names BUS)
Documentation
Return the service names registered at D-Bus BUS.
The result is a list of strings, which is nil when there are no registered service names at all. Well known names are strings like "org.freedesktop.DBus". Names starting with ":" are unique names for services.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-list-names (bus)
"Return the service names registered at D-Bus BUS.
The result is a list of strings, which is nil when there are no
registered service names at all. Well known names are strings
like \"org.freedesktop.DBus\". Names starting with \":\" are
unique names for services."
(let (dbus-debug)
(dbus-ignore-errors
(dbus-call-method
bus dbus-service-dbus dbus-path-dbus dbus-interface-dbus "ListNames"))))