Function: tramp-adb-file-name-handler

tramp-adb-file-name-handler is an autoloaded and byte-compiled function defined in tramp-adb.el.gz.

Signature

(tramp-adb-file-name-handler OPERATION &rest ARGS)

Documentation

Invoke the ADB handler for OPERATION.

First arg specifies the OPERATION, second arg is a list of arguments to pass to the OPERATION.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-adb.el.gz
;;;###tramp-autoload
(defun tramp-adb-file-name-handler (operation &rest args)
  "Invoke the ADB handler for OPERATION.
First arg specifies the OPERATION, second arg is a list of
arguments to pass to the OPERATION."
  (if-let ((fn (assoc operation tramp-adb-file-name-handler-alist)))
      (save-match-data (apply (cdr fn) args))
    (tramp-run-real-handler operation args)))