Function: dbus--introspect-names

dbus--introspect-names is a byte-compiled function defined in dbus.el.gz.

Signature

(dbus--introspect-names OBJECT TAG)

Documentation

Return the names of the children of OBJECT with TAG.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
;;; D-Bus introspection.

(defsubst dbus--introspect-names (object tag)
  "Return the names of the children of OBJECT with TAG."
  (mapcar (lambda (elt)
            (dbus-introspect-get-attribute elt "name"))
          (xml-get-children object tag)))