Function: dbus-list-hash-table

dbus-list-hash-table is a byte-compiled function defined in dbus.el.gz.

Signature

(dbus-list-hash-table)

Documentation

Return all registered member registrations to D-Bus.

The return value is a list, with elements of kind (KEY . VALUE). See dbus-registered-objects-table for a description of the hash table.

Source Code

;; Defined in /usr/src/emacs/lisp/net/dbus.el.gz
;;; Hash table of registered functions.

(defun dbus-list-hash-table ()
  "Return all registered member registrations to D-Bus.
The return value is a list, with elements of kind (KEY . VALUE).
See `dbus-registered-objects-table' for a description of the
hash table."
  (let (result)
    (maphash
     (lambda (key value) (push (cons key value) result))
     dbus-registered-objects-table)
    result))