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

  /external/jsoncpp/devtools/
tarball.py 3 import tarfile namespace
32 tar = tarfile.TarFile.gzopen( tarball_path, 'w', compresslevel=compression )
49 tar = tarfile.TarFile.gzopen(tarball_path, mode='r')
  /external/jsoncpp/scons-tools/
targz.py 21 import tarfile namespace
45 tar = tarfile.TarFile(os.path.splitext(target_path)[0], 'w', fileobj)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.core_2.0.2.R36x_v20100804.jar 
org.eclipse.pde.api.tools_1.0.202.v20100820_r361.jar 
org.eclipse.ui.ide_3.6.2.M20101117-0800.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.p2.core_2.3.0.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.core_2.3.0.v20130327-2119.jar 
  /external/chromium-trace/catapult/third_party/gsutil/gslib/commands/
update.py 23 import tarfile namespace
173 tf: Opened TarFile.
246 tf: Opened TarFile, or None if none currently open.
437 tf = tarfile.open('gsutil.tar.gz')
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.3/
plexus-archiver-2.3.jar 
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/autotest/client/virt/
virt_utils.py 8 import fcntl, shelve, ConfigParser, threading, sys, UserDict, inspect, tarfile namespace
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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...]

Completed in 1903 milliseconds