Home
last modified time | relevance | path

Searched refs:install_path (Results 1 – 3 of 3) sorted by relevance

/development/vndk/tools/header-checker/android/
Dbuild-prebuilts.sh167 local install_path="$(otool -D "${file}" | sed -n 2p)"
168 if [ -n "${install_path}" ]; then
169 basename "${install_path}"
/development/tools/ndk/ndkabidump/
D__init__.py50 install_path = prebuilts_dir / dump.relative_to(abi_out)
51 install_dir = install_path.parent
55 shutil.copy2(dump, install_path)
/development/testrunner/
Druntest.py361 for install_path in re.split(r'\s+', install_paths):
362 if filter_re and not filter_re.match(install_path):
364 if install_path.endswith(".apk"):
365 abs_install_path = os.path.join(self._root_path, install_path)
374 self._PushInstallFileToDevice(install_path)
376 def _PushInstallFileToDevice(self, install_path): argument
377 m = self._re_make_install_path.match(install_path)
383 abs_install_path = os.path.join(self._root_path, install_path)
387 logger.Log("Error: Failed to recognize path of file to install %s" % install_path)