Searched refs:unzip_path (Results 1 – 5 of 5) sorted by relevance
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_manager_util.py | 71 def UnzipArchive(archive_path, unzip_path): argument 85 if not os.path.exists(unzip_path): 86 os.makedirs(unzip_path) 90 archive.extractall(path=unzip_path) 91 SetUnzippedDirPermissions(archive, unzip_path) 93 if unzip_path and os.path.isdir(unzip_path): 94 RemoveDir(unzip_path)
|
D | dependency_manager_util_unittest.py | 132 unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4())) 133 dependency_manager_util.UnzipArchive(self.archive_path, unzip_path) 134 self.AssertExpectedDirFiles(unzip_path) 136 dependency_manager_util.RemoveDir(unzip_path) 139 unzip_path = os.path.join(tempfile.gettempdir(), str(uuid.uuid4())) 140 self.assertFalse(os.path.exists(unzip_path)) 147 unzip_path) 149 self.assertFalse(os.path.exists(unzip_path))
|
D | archive_info.py | 13 def __init__(self, archive_file, unzip_path, path_within_archive): argument 30 self._unzip_path = unzip_path
|
D | cloud_storage_info_unittest.py | 162 unzip_path = os.path.join( 165 dep_path = os.path.join(unzip_path, path_within_archive) 175 self.download_path, unzip_path, path_within_archive) 187 unzip_mock.assert_called_once_with(self.download_path, unzip_path)
|
D | base_config.py | 165 unzip_path = os.path.abspath( 169 download_path, unzip_path, path_within_archive)
|