Searched refs:_temp_path (Results 1 – 3 of 3) sorted by relevance
/external/autotest/tko/perf_upload/ |
D | perf_uploader_unittest.py | 270 _, self._temp_path = tempfile.mkstemp() 273 os.remove(self._temp_path) 277 with open(self._temp_path, 'w') as f: 279 config = perf_uploader._parse_config_file(self._temp_path) 289 with open(self._temp_path, 'w') as f: 291 config = perf_uploader._parse_config_file(self._temp_path) 303 with open(self._temp_path, 'w') as f: 305 config = perf_uploader._parse_config_file(self._temp_path) 318 with open(self._temp_path, 'w') as f: 320 config = perf_uploader._parse_config_file(self._temp_path) [all …]
|
/external/autotest/client/cros/faft/utils/ |
D | firmware_updater.py | 48 self._temp_path = self.os_if.state_dir_file(self.DEFAULT_SUBDIR) 49 self._cbfs_work_path = os.path.join(self._temp_path, 'cbfs') 50 self._keys_path = os.path.join(self._temp_path, 'keys') 51 self._work_path = os.path.join(self._temp_path, 'work') 157 self.os_if.create_dir(self._temp_path) 162 working_shellball = os.path.join(self._temp_path, 168 if self.os_if.is_dir(self._temp_path): 169 self.os_if.remove_dir(self._temp_path) 244 filename = os.path.join(self._temp_path, filename) 370 os.path.join(self._temp_path, 'output.bin'), [all …]
|
/external/python/cpython3/Lib/importlib/resources/ |
D | _common.py | 183 def _temp_path(dir: tempfile.TemporaryDirectory): function 198 with _temp_path(tempfile.TemporaryDirectory()) as temp_dir:
|