HomeSort by relevance Sort by last modified time
    Searched refs:tarfile (Results 1 - 25 of 34) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 11 import tarfile namespace
45 self.tar = tarfile.open(self.tarname, mode=self.mode, encoding="iso8859-1")
165 # This test checks if tarfile.open() is able to open an empty tar
168 tarfile.open(tmpname, self.mode.replace("r", "w")).close()
170 tar = tarfile.open(tmpname, self.mode)
172 except tarfile.ReadError:
173 self.fail("tarfile.open() failed on empty archive")
178 # This test guarantees that tarfile.open() does not treat an empty
181 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 11 import tarfile namespace
45 self.tar = tarfile.open(self.tarname, mode=self.mode, encoding="iso8859-1")
165 # This test checks if tarfile.open() is able to open an empty tar
168 tarfile.open(tmpname, self.mode.replace("r", "w")).close()
170 tar = tarfile.open(tmpname, self.mode)
172 except tarfile.ReadError:
173 self.fail("tarfile.open() failed on empty archive")
178 # This test guarantees that tarfile.open() does not treat an empty
181 self.assertRaises(tarfile.ReadError, tarfile.open, tmpname, self.mode
    [all...]
  /external/chromium_org/native_client_sdk/src/build_tools/
nacl-mono-archive.py 9 import tarfile namespace
21 help='Tarfile path',
52 tar_file = tarfile.open(options.tar_path, mode='w:bz2', dereference=True)
build_sdk.py 741 def BuildStepTarBundle(pepper_ver, tarfile):
743 buildbot_common.MakeDir(os.path.dirname(tarfile))
744 buildbot_common.Run([sys.executable, CYGTAR, '-C', OUT_DIR, '-cjf', tarfile,
748 def GetManifestBundle(pepper_ver, chrome_revision, nacl_revision, tarfile,
750 with open(tarfile, 'rb') as tarfile_stream:
773 tarfile):
777 tarname = os.path.basename(tarfile)
778 tarfile_dir = os.path.dirname(tarfile)
785 tarfile, archive_url)
870 def BuildStepTarNaClPorts(pepper_ver, tarfile)
    [all...]
nacl-mono-builder.py 9 import tarfile namespace
69 tar_file = tarfile.open(os.path.join(MONO_BUILD_DIR, sdk_file))
  /external/chromium_org/tools/export_tarball/
export_tarball.py 23 import tarfile namespace
85 class MyTarFile(tarfile.TarFile):
109 tarfile.TarFile.add(self, name, arcname=arcname, recursive=recursive)
export_v8_tarball.py 22 import tarfile namespace
69 class MyTarFile(tarfile.TarFile):
88 tarfile.TarFile.add(self, name, arcname=arcname, recursive=recursive)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tarfile.py 4 # tarfile.py
61 # from tarfile import *
62 __all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"]
79 LNKTYPE = "1" # link (inside tarfile)
101 # tarfile constants
103 # File types that tarfile supports:
314 Used by TarFile.list()
388 """Class that serves as an adapter between TarFile and
783 Is returned by TarFile.extractfile().
787 def __init__(self, tarfile, tarinfo)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tarfile.py 4 # tarfile.py
61 # from tarfile import *
62 __all__ = ["TarFile", "TarInfo", "is_tarfile", "TarError"]
79 LNKTYPE = "1" # link (inside tarfile)
101 # tarfile constants
103 # File types that tarfile supports:
314 Used by TarFile.list()
388 """Class that serves as an adapter between TarFile and
783 Is returned by TarFile.extractfile().
787 def __init__(self, tarfile, tarinfo)
    [all...]
  /external/chromium_org/v8/test/benchmarks/
testcfg.py 32 import tarfile namespace
149 with tarfile.open(archive_file, "r:gz") as tar:
160 with tarfile.open(archive_file, "w:gz") as tar:
  /external/chromium_org/v8/test/mozilla/
testcfg.py 32 import tarfile namespace
142 with tarfile.open(archive_file, "r:gz") as tar:
158 with tarfile.open(archive_file, "w:gz") as tar:
  /external/chromium_org/v8/test/test262/
testcfg.py 33 import tarfile namespace
114 archive = tarfile.open(archive_name, "r:gz")
  /external/deqp/external/
fetch_sources.py 6 import tarfile namespace
59 archive = tarfile.open(srcPath)
  /external/chromium_org/tools/telemetry/telemetry/util/
cloud_storage.py 14 import tarfile namespace
85 with tarfile.open(fileobj=cStringIO.StringIO(response.read())) as tar_file:
  /external/chromium_org/chrome/common/extensions/docs/server2/
rietveld_patcher.py 6 import tarfile namespace
107 tar = tarfile.open(fileobj=StringIO(tarball_result.content))
108 except tarfile.TarError as e:
121 except tarfile.TarError as e:
  /bionic/libc/tools/zoneinfo/
update-tzdata.py 13 import tarfile namespace
173 tar = tarfile.open(data_filename, 'r')
  /external/chromium_org/v8/test/promises-aplus/
testcfg.py 33 import tarfile namespace
118 archive = tarfile.open(archive, 'r:gz')
  /external/chromium_org/v8/test/test262-es6/
testcfg.py 33 import tarfile namespace
153 archive = tarfile.open(archive_name, "r:gz")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 84 import tarfile # late import so Python build itself doesn't break namespace
101 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
archive_util.py 84 import tarfile # late import so Python build itself doesn't break namespace
101 tar = tarfile.open(archive_name, 'w|%s' % tar_compression[compress])
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 8 import tarfile namespace
97 tar = tarfile.open(path)
275 archive = tarfile.open(archive_name)
test_sdist.py 3 import tarfile namespace
347 archive = tarfile.open(archive_name)
365 archive = tarfile.open(archive_name)
500 archive = tarfile.open(archive_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_archive_util.py 8 import tarfile namespace
97 tar = tarfile.open(path)
275 archive = tarfile.open(archive_name)
test_sdist.py 3 import tarfile namespace
347 archive = tarfile.open(archive_name)
365 archive = tarfile.open(archive_name)
500 archive = tarfile.open(archive_name)
  /bionic/libc/tools/
generate-NOTICE.py 14 import tarfile namespace

Completed in 1165 milliseconds

1 2