Function: tramp-adb-file-name-p

tramp-adb-file-name-p is a byte-compiled function defined in tramp-adb.el.gz.

Signature

(tramp-adb-file-name-p FILENAME)

Documentation

Check if it's a FILENAME for ADB.

Source Code

;; Defined in /usr/src/emacs/lisp/net/tramp-adb.el.gz
;; It must be a `defsubst' in order to push the whole code into
;; tramp-loaddefs.el.  Otherwise, there would be recursive autoloading.
;;;###tramp-autoload
(defsubst tramp-adb-file-name-p (filename)
  "Check if it's a FILENAME for ADB."
  (and (tramp-tramp-file-p filename)
       (string= (tramp-file-name-method (tramp-dissect-file-name filename))
		tramp-adb-method)))