HomeSort by relevance Sort by last modified time
    Searched refs:archive_path (Results 1 - 15 of 15) 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/telemetry/telemetry/core/
network_controller.py 33 def StartReplay(self, archive_path, make_javascript_deterministic=False):
35 archive_path, make_javascript_deterministic)
  /external/autotest/client/cros/
webpagereplay_wrapper.py 18 def __init__(self, archive_path):
20 Creates a WPR server using archive_path and pre-set arguments.
22 @param archive_path: path to the .wpr archive to be used.
33 archive_path=archive_path,
  /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/testing/
serially_executed_browser_test_case.py 56 def StartWPRServer(cls, archive_path=None, archive_bucket=None):
60 archive_path: Path to the WPR file. If there is a corresponding sha1 file,
69 cloud_storage.GetIfChanged(archive_path, archive_bucket)
71 cls.platform.network_controller.StartReplay(archive_path=archive_path)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/util/
wpr_server.py 54 with ReplayServer(archive_path):
59 def __init__(self, archive_path, replay_host, http_port, https_port, dns_port,
64 archive_path: a path to a specific WPR archive (required).
75 self.archive_path = archive_path
87 replay_options, archive_path)
90 self._CheckPath('archive directory', os.path.dirname(self.archive_path))
91 elif not os.path.exists(self.archive_path):
92 self._CheckPath('archive file', self.archive_path)
109 replay_options, archive_path, log_level=None)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
network_controller_backend.py 159 def StartReplay(self, archive_path, make_javascript_deterministic=False):
181 archive_path: a path to a specific WPR archive.
188 if not archive_path:
197 not os.path.exists(archive_path)):
199 'Archive path does not exist: %s' % archive_path)
201 self._archive_path == archive_path and
205 self._archive_path = archive_path
  /external/chromium-trace/catapult/telemetry/telemetry/wpr/
archive_info.py 81 for archive_path in self._data['archives']:
82 archive_path = self._WprFileNameToPath(archive_path)
84 cloud_storage.GetIfChanged(archive_path, self._bucket)
86 if os.path.exists(archive_path):
90 archive_path)
  /external/chromium-trace/catapult/telemetry/telemetry/page/
shared_page_state.py 211 archive_path = page_set.WprFilePathForStory(page)
213 # controller raise an exception when the archive_path is not found.
214 if archive_path is not None and not os.path.isfile(archive_path):
215 logging.warning('WPR archive missing: %s', archive_path)
216 archive_path = None
218 archive_path, page.make_javascript_deterministic)
  /external/chromium-trace/catapult/telemetry/telemetry/internal/
story_runner.py 373 archive_path = wpr_archive_info.WprFilePathForStory(story)
374 if not archive_path:
376 elif not os.path.isfile(archive_path):
  /external/v8/build/android/gyp/
process_resources.py 323 archive_path = f
326 archive_path = os.path.join(parent_dir, f)
328 files_to_zip[archive_path] = path
  /external/chromium-trace/catapult/telemetry/telemetry/testing/fakes/
__init__.py 310 def StartReplay(self, archive_path, make_javascript_deterministic=False):
313 self.is_replay_active = archive_path is not None
  /external/v8/build/
get_syzygy_binaries.py 290 archive_path = _SYZYGY_ARCHIVE_PATH % { 'revision': options.revision }
308 resource = archive_path + '/' + base
  /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 591 milliseconds