Function: dbus-introspect-get-node-names
dbus-introspect-get-node-names is a byte-compiled function defined in
dbus.el.gz.
Signature
(dbus-introspect-get-node-names BUS SERVICE PATH)
Documentation
Return all node names of SERVICE in D-Bus BUS at object path PATH.
It returns a list of strings. The node names stand for further object paths of the D-Bus service.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-node-names (bus service path)
"Return all node names of SERVICE in D-Bus BUS at object path PATH.
It returns a list of strings. The node names stand for further
object paths of the D-Bus service."
(dbus--introspect-names (dbus-introspect-xml bus service path) 'node))