Home
last modified time | relevance | path

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

/external/autotest/client/common_lib/
Dbase_packages.py475 def upload_pkg(self, pkg_path, upload_path=None, update_checksum=False, argument
490 self.update_checksum(pkg_path)
495 (pkg_path, path,
509 def upload_pkg_parallel(self, pkg_path, upload_path, update_checksum=False): argument
525 if os.path.isdir(pkg_path):
526 self.upload_pkg_dir(pkg_path, upload_path)
528 self.upload_pkg_file(pkg_path, upload_path)
721 def compute_checksum(self, pkg_path): argument
726 md5sum_output = self._run_command("md5sum %s " % pkg_path).stdout
730 def update_checksum(self, pkg_path): argument
[all …]
/external/boringssl/src/util/bot/go/
Dbootstrap.py124 pkg_path = os.path.join(toolset_root, url[url.rfind('/')+1:])
127 download_file(url, pkg_path)
130 if pkg_path.endswith('.zip'):
131 with zipfile.ZipFile(pkg_path, 'r') as f:
133 elif pkg_path.endswith('.tar.gz'):
134 with tarfile.open(pkg_path, 'r:gz') as f: