Home
last modified time | relevance | path

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

/development/vndk/tools/header-checker/android/
Dbuild-prebuilts.sh103 local install_path="$(otool -D "${file}" | sed -n 2p)"
104 if [ -n "${install_path}" ]; then
105 basename "${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)