Searched refs:zip_ref (Results 1 – 5 of 5) sorted by relevance
/test/framework/harnesses/host_controller/command_processor/ |
D | command_repack.py | 66 with zipfile.ZipFile(device_zipfile_path, 'r') as zip_ref: 67 zip_ref.extract(_ANDROID_INFO_TXT_FILENAME, 80 new_zipfile_path, "w", allowZip64=True) as zip_ref: 87 zip_ref.write( 98 zip_ref.write( 102 zip_ref.write(
|
D | command_retry.py | 46 def IsResultZipFile(self, zip_ref): argument 60 if len(zip_ref.namelist()) > 1: 61 for name in zip_ref.namelist(): 102 with zipfile.ZipFile(result_zip, mode="r") as zip_ref: 103 if self.IsResultZipFile(zip_ref): 104 unzipped_result_dir = zip_ref.namelist()[0].rstrip("/") 105 zip_ref.extractall(local_results_dir)
|
D | command_gsispl.py | 106 'r') as zip_ref: 107 zip_ref.extractall(dest_path)
|
D | command_reproduce.py | 298 with zipfile.ZipFile(result_zip_local_path, mode="r") as zip_ref: 299 zip_ref.extractall(local_results_path)
|
/test/framework/harnesses/host_controller/build/ |
D | build_provider.py | 118 with zipfile.ZipFile(path, 'r') as zip_ref: 119 if full_device_images or self._IsFullDeviceImage(zip_ref.namelist()): 130 zip_ref.extractall(dest_path) 167 with zipfile.ZipFile(path, 'r') as zip_ref: 168 zip_ref.extractall(dest_path) 221 with zipfile.ZipFile(path, 'r') as zip_ref: 222 zip_ref.extractall(dest_path)
|