Searched refs:zip_file (Results 1 – 6 of 6) sorted by relevance
/test/framework/harnesses/host_controller/utils/parser/ |
D | result_utils.py | 25 def ExtractResultZip(zip_file, output_dir, xml_only=True): argument 38 xml_name = next(x for x in zip_file.namelist() if 47 return zip_file.extract(xml_name, path=output_dir) 49 zip_file.extractall(path=output_dir)
|
/test/vts-testcase/vndk/golden/ |
D | vndk_data.py | 134 self.zip_file = None 139 self.zip_file = zipfile.ZipFile(self._resource, "r") 145 if self.zip_file: 146 self.zip_file.close() 183 for path in dump_resource.zip_file.namelist():
|
/test/framework/harnesses/host_controller/command_processor/ |
D | command_sheet_test.py | 222 with zipfile.ZipFile(temp_file, "w") as zip_file: 223 zip_file.writestr(common._TEST_RESULT_XML, xml_string) 307 "w") as zip_file: 308 zip_file.writestr(common._TEST_RESULT_XML, _XML_1)
|
D | command_sheet.py | 288 with zipfile.ZipFile(src, mode="r") as zip_file: 290 zip_file, os.path.join(temp_dir, "unzipped"))
|
/test/framework/harnesses/host_controller/build/ |
D | build_provider_test.py | 76 with zipfile.ZipFile(zip_path, "w") as zip_file: 78 zip_file.write(empty_path, path)
|
/test/vts-testcase/vndk/abi/ |
D | vts_vndk_abi_test.py | 337 assert_lines = self._ScanLibDirs(dump_resource.zip_file,
|