Lines Matching full:path
25 ;; If the path the product's files/image uses an a product alias, you
69 "Ascend the current path until the root of the android build tree is found.
122 (defun android-product-path ()
123 "Return the full path to the product directory.
128 (let ((path (concat (android-find-build-tree-root) "out/target/product/"
130 (when (not (file-exists-p path))
132 add an entry to android-product-map." path (android-product))))
133 path))
136 "Return the full path to the host BINARY.
139 the shell exec PATH setup."
141 (let ((path (concat (android-find-build-tree-root) "out/host/"
143 (if (file-exists-p path)
144 path
149 "Return the path to the adb executable.
150 If not in the build tree use the PATH env variable."
154 "Return the path to the fastboot executable.
155 If not in the build tree use the PATH env variable."
156 ; For fastboot -p is the name of the product, *not* the full path to
162 If the optional PRODUCT is not nil, -p (android-product-path) is used
168 (shell-command (concat (android-adb) " -p " (android-product-path)