Function: dbus--introspect-name
dbus--introspect-name is a byte-compiled function defined in
dbus.el.gz.
Signature
(dbus--introspect-name OBJECT TAG NAME)
Documentation
Return the first child of OBJECT with TAG, whose name is NAME.
Source Code
;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
(defsubst dbus--introspect-name (object tag name)
"Return the first child of OBJECT with TAG, whose name is NAME."
(seq-find (lambda (elt)
(string-equal (dbus-introspect-get-attribute elt "name") name))
(xml-get-children object tag)))