Function: dbus-introspect-get-all-nodes

dbus-introspect-get-all-nodes is a byte-compiled function defined in dbus.el.gz.

Signature

(dbus-introspect-get-all-nodes BUS SERVICE PATH)

Documentation

Return all node names of SERVICE in D-Bus BUS at object path PATH.

It returns a list of strings, which are further object paths of SERVICE.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defun dbus-introspect-get-all-nodes (bus service path)
  "Return all node names of SERVICE in D-Bus BUS at object path PATH.
It returns a list of strings, which are further object paths of SERVICE."
  (cons path (mapcan (lambda (elt)
                       (setq elt (expand-file-name elt path))
                       (dbus-introspect-get-all-nodes bus service elt))
                     (dbus-introspect-get-node-names bus service path))))