Function: dbus-list-activatable-names
dbus-list-activatable-names is a byte-compiled function defined in
dbus.el.gz.
Signature
(dbus-list-activatable-names &optional BUS)
Documentation
Return a list of the D-Bus service names which can be activated.
BUS defaults to :system when nil or omitted. The result is a list of strings, which is nil when there are no activatable service names at all.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
;;; D-Bus registered names.
(defun dbus-list-activatable-names (&optional bus)
"Return a list of the D-Bus service names which can be activated.
BUS defaults to `:system' when nil or omitted. The result is a
list of strings, which is nil when there are no activatable
service names at all."
(let (dbus-debug)
(dbus-ignore-errors
(dbus-call-method
(or bus :system) dbus-service-dbus
dbus-path-dbus dbus-interface-dbus "ListActivatableNames"))))