Function: tramp-rclone-parse-device-names
tramp-rclone-parse-device-names is an autoloaded and byte-compiled
function defined in tramp-rclone.el.gz.
Signature
(tramp-rclone-parse-device-names IGNORE)
Documentation
Return a list of (nil host) tuples allowed to access.
Source Code
;; Defined in /usr/src/emacs/lisp/net/tramp-rclone.el.gz
;;;###tramp-autoload
(defun tramp-rclone-parse-device-names (_ignore)
"Return a list of (nil host) tuples allowed to access."
(with-tramp-connection-property nil "rclone-device-names"
(delq nil
(mapcar
(lambda (line)
(when (string-match (rx bol (group (+ (not blank))) ":" eol) line)
`(nil ,(match-string 1 line))))
(tramp-process-lines nil tramp-rclone-program "listremotes")))))