Function: tramp-dbus-function
tramp-dbus-function is a byte-compiled function defined in
tramp-gvfs.el.gz.
Signature
(tramp-dbus-function VEC FUNC ARGS)
Documentation
Apply a D-Bus function FUNC from dbus.el.
The call will be traced by Tramp with trace level 6.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-gvfs.el.gz
(defun tramp-dbus-function (vec func args)
"Apply a D-Bus function FUNC from dbus.el.
The call will be traced by Tramp with trace level 6."
(let (result)
(tramp-message vec 6 "%s" (cons func args))
(setq result (apply func args))
(tramp-message vec 6 "%s" (tramp-gvfs-stringify-dbus-message result))
result))