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

  /test/vts/utils/python/library/
ar_parser.py 25 def _IterateArchive(archive_path):
43 archive_path: The path to the archive file.
53 ar = open(archive_path, "rb")
75 def ListGlobalSymbols(archive_path):
79 archive_path: The path to the archive file.
89 for offset in _IterateArchive(archive_path):
90 with elf_parser.ElfParser(archive_path, offset) as parser:
  /external/autotest/client/site_tests/platform_CrosDisksArchive/
platform_CrosDisksArchive.py 48 def _make_zip_archive(self, archive_path, root_dir,
57 archive_path: Path of the output archive.
62 archive = zipfile.ZipFile(archive_path, 'w', compression)
67 def _make_rar_archive(self, archive_path, root_dir):
75 archive_path: Path of the output archive.
81 shutil.copyfile(os.path.join(self._data_dir, 'test.rar'), archive_path)
83 def _make_archive(self, archive_type, archive_path, root_dir):
92 archive_path: Path of the output archive.
96 self._make_zip_archive(archive_path, root_dir)
98 self._make_rar_archive(archive_path, root_dir
    [all...]
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
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...]
dependency_manager_util.py 75 def UnzipArchive(archive_path, unzip_path):
79 archive_path: The downloaded file to unzip.
83 ValueError: If |archive_path| is not a zipfile.
86 if not (archive_path and zipfile.is_zipfile(archive_path)):
88 'Attempting to unzip a non-archive file at %s' % archive_path)
95 unzip_cmd = ['ditto', '-x', '-k', archive_path, unzip_path]
101 with zipfile.ZipFile(archive_path, 'r') as archive:
  /external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/
text_datasets.py 38 archive_path = base.maybe_download(
40 tfile = tarfile.open(archive_path, 'r:*')
  /toolchain/binutils/binutils-2.27/ld/
ldlang.c 157 archive_path (const char *pattern) function
177 /* Given that FILE_SPEC results in a non-NULL SEP result from archive_path,
247 char *p = archive_path (list_tmp->name);
907 else if ((p = archive_path (file_spec)) != NULL)
    [all...]

Completed in 1015 milliseconds