Home
last modified time | relevance | path

Searched refs:temp_dir (Results 1 – 8 of 8) sorted by relevance

/test/vts/testcases/host/verify_acpio/
DVtsFirmwareAcpioVerification.py54 self.temp_dir = tempfile.mkdtemp()
55 logging.debug("Create %s", self.temp_dir)
89 host_acpio_image = os.path.join(self.temp_dir, "acpio")
92 unpacked_acpio_file = os.path.join(self.temp_dir, temp_SSDT_dump)
107 temp_SSDT_dump_file_hash=self.getSha1(os.path.join(self.temp_dir, temp_SSDT_dump_file))
112 host_SSDT_file = os.path.join(self.temp_dir, current_SSDT)
/test/vts/testcases/host/verify_dtbo/
DVtsFirmwareDtboVerification.py68 self.temp_dir = tempfile.mkdtemp()
69 logging.info("Create %s", self.temp_dir)
126 host_dtbo_image = os.path.join(self.temp_dir, "dtbo")
129 unpacked_dtbo_path = os.path.join(self.temp_dir, "dumped_dtbo")
157 overlay_path = os.path.join(self.temp_dir, overlay_file)
178 shutil.rmtree(self.temp_dir)
/test/vts/testcases/host/verify_boot_header/
DVtsFirmwareBootHeaderVerification.py50 self.temp_dir = tempfile.mkdtemp()
52 logging.info("Create %s", self.temp_dir)
158 host_boot_path = os.path.join(self.temp_dir, "boot.img")
171 host_recovery_path = os.path.join(self.temp_dir, "recovery.img")
177 shutil.rmtree(self.temp_dir)
/test/framework/harnesses/host_controller/command_processor/
Dcommand_sheet.py155 temp_dir = tempfile.mkdtemp()
157 src_path = _GetResultAsXml(src_path, os.path.join(temp_dir, "src"))
177 ref_path, os.path.join(temp_dir, "ref"))
194 shutil.rmtree(temp_dir)
266 def _GetResultAsXml(src, temp_dir): argument
283 src = _DownloadResultZipFromGcs(src, os.path.join(temp_dir, "zipped"))
290 zip_file, os.path.join(temp_dir, "unzipped"))
/test/vts/utils/python/reporting/
Dreport_file_utils.py170 temp_dir = tempfile.mkdtemp()
171 shutil.copy(src_path, temp_dir)
172 src_path = os.path.join(temp_dir, os.path.basename(src_path))
182 shutil.rmtree(temp_dir)
/test/vts/compilation_tools/vtsc/test/
Dtest_vtsc.py55 output_dir, temp_dir): argument
62 self._temp_dir = temp_dir
295 temp_dir = val variable
303 output_dir, temp_dir))
/test/vts/utils/python/coverage/
Dsancov_utils.py305 temp_dir = tempfile.mkdtemp()
309 dut.adb.pull(file, temp_dir)
312 os.path.join(temp_dir, os.path.basename(file)))
346 shutil.rmtree(temp_dir)
/test/vts/drivers/shell/
DShellDriver.cpp94 string temp_dir = GetDirFromFilePath(this->socket_address_); in ExecShellCommandNohup() local
95 string temp_file_name_pattern = temp_dir + "/nohupXXXXXX"; in ExecShellCommandNohup()