Function: dbus-list-known-names
dbus-list-known-names is a byte-compiled function defined in
dbus.el.gz.
Signature
(dbus-list-known-names BUS)
Documentation
Retrieve all services which correspond to a known name in BUS.
A service has a known name if it doesn't start with ":".
Source Code
;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-list-known-names (bus)
"Retrieve all services which correspond to a known name in BUS.
A service has a known name if it doesn't start with \":\"."
(seq-remove (lambda (name)
(= (string-to-char name) ?:))
(dbus-list-names bus)))