HomeSort by relevance Sort by last modified time
    Searched refs:archive_path (Results 1 - 12 of 12) sorted by null

  /external/autotest/client/site_tests/platform_CrosDisksArchive/
platform_CrosDisksArchive.py 47 def _make_tar_archive(self, archive_path, root_dir, compression=None):
55 archive_path: Path of the output archive.
61 archive = tarfile.open(archive_path, mode)
66 def _make_zip_archive(self, archive_path, root_dir,
75 archive_path: Path of the output archive.
80 archive = zipfile.ZipFile(archive_path, 'w', compression)
85 def _make_archive(self, archive_type, archive_path, root_dir):
94 archive_path: Path of the output archive.
98 self._make_zip_archive(archive_path, root_dir)
100 self._make_tar_archive(archive_path, root_dir
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_util.py 74 def UnzipArchive(archive_path, unzip_path):
78 archive_path: The downloaded file to unzip.
82 ValueError: If |archive_path| is not a zipfile.
85 if not (archive_path and zipfile.is_zipfile(archive_path)):
87 'Attempting to unzip a non-archive file at %s' % archive_path)
91 with zipfile.ZipFile(archive_path, 'r') as archive:
dependency_manager_util_unittest.py 59 self.archive_path = self.CreateZipArchiveFromDir(self.tmp_dir)
64 if os.path.isfile(self.archive_path):
65 os.remove(self.archive_path)
109 archive_path = shutil.make_archive(base_path, 'zip', dir_path)
110 self.assertTrue(os.path.exists(archive_path))
111 self.assertTrue(zipfile.is_zipfile(archive_path))
113 if os.path.isfile(archive_path):
114 os.remove(archive_path)
116 return archive_path
133 dependency_manager_util.UnzipArchive(self.archive_path, unzip_path
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/core/
network_controller.py 38 def StartReplay(self, archive_path, make_javascript_deterministic=False):
40 archive_path, make_javascript_deterministic)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
wpr_server.py 55 with ReplayServer(archive_path):
60 def __init__(self, archive_path, replay_host, http_port, https_port, dns_port,
65 archive_path: a path to a specific WPR archive (required).
76 self.archive_path = archive_path
88 replay_options, archive_path)
91 self._CheckPath('archive directory', os.path.dirname(self.archive_path))
92 elif not os.path.exists(self.archive_path):
93 self._CheckPath('archive file', self.archive_path)
110 replay_options, archive_path, log_level=None)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
network_controller_backend.py 163 def StartReplay(self, archive_path, make_javascript_deterministic=False):
185 archive_path: a path to a specific WPR archive.
192 if not archive_path:
201 not os.path.exists(archive_path)):
203 'Archive path does not exist: %s' % archive_path)
205 self._archive_path == archive_path and
209 self._archive_path = archive_path
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
serially_executed_browser_test_case.py 80 def StartWPRServer(cls, archive_path=None, archive_bucket=None):
84 archive_path: Path to the WPR file. If there is a corresponding sha1 file,
93 cloud_storage.GetIfChanged(archive_path, archive_bucket)
95 cls.platform.network_controller.StartReplay(archive_path=archive_path)
  /external/chromium-trace/catapult/telemetry/telemetry/page/
shared_page_state.py 201 archive_path = page_set.WprFilePathForStory(page, self.platform.GetOSName())
203 # controller raise an exception when the archive_path is not found.
204 if archive_path is not None and not os.path.isfile(archive_path):
205 logging.warning('WPR archive missing: %s', archive_path)
206 archive_path = None
208 archive_path, page.make_javascript_deterministic)
  /external/chromium-trace/catapult/telemetry/telemetry/wpr/
archive_info.py 105 archive_path = self._WprFileNameToPath(
107 download_if_needed(archive_path)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/
story_runner.py 415 archive_path = wpr_archive_info.WprFilePathForStory(story)
416 if not archive_path:
418 elif not os.path.isfile(archive_path):
  /external/chromium-trace/catapult/telemetry/telemetry/testing/fakes/
__init__.py 335 def StartReplay(self, archive_path, make_javascript_deterministic=False):
338 self.is_initialized = archive_path is not None
  /toolchain/binutils/binutils-2.25/ld/
ldlang.c 152 archive_path (const char *pattern) function
172 /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
242 char *p = archive_path (list_tmp->name);
902 else if ((p = archive_path (file_spec)) != NULL)
    [all...]

Completed in 5201 milliseconds