Searched refs:package_file_name (Results 1 – 2 of 2) sorted by relevance
/external/toolchain-utils/crosperf/ |
D | download_images.py | 137 def DownloadSingleFile(self, chromeos_root, build_id, package_file_name): argument 141 'gs://chromeos-image-archive/%s/%s' % (build_id, package_file_name)) 147 raise MissingFile('Cannot find package file: %s.' % package_file_name) 151 'directory.' % package_file_name) 155 package_path = os.path.join(download_path, package_file_name) 170 def UncompressSingleFile(self, chromeos_root, build_id, package_file_name, argument 175 'cd %s ; %s %s' % (download_path, uncompress_cmd, package_file_name)) 179 print('(Uncompressing file %s .)' % package_file_name) 182 raise MissingFile('Cannot uncompress file: %s.' % package_file_name) 184 command = ('cd %s ; rm -f %s' % (download_path, package_file_name)) [all …]
|
/external/python/cpython3/Lib/ |
D | imp.py | 283 package_file_name = '__init__' + suffix 284 file_path = os.path.join(package_directory, package_file_name)
|