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

1 2

  /system/core/libzipfile/
Android.mk 8 zipfile.c
24 zipfile.c
test_zipfile.c 1 #include <zipfile/zipfile.h>
27 fprintf(stderr, "usage: test_zipfile ZIPFILE -l\n"
28 " lists the files in the zipfile\n"
29 " test_zipfile ZIPFILE -u FILENAME SAVETO\n"
zipfile.c 1 #include <zipfile/zipfile.h>
14 Zipfile *file = malloc(sizeof(Zipfile));
16 memset(file, 0, sizeof(Zipfile));
32 Zipfile* file = (Zipfile*)f;
45 Zipfile* file = (Zipfile*)f;
134 Zipfile* zip = (Zipfile*)file
    [all...]
  /development/build/tools/
mk_sources_zip.py 24 import zipfile namespace
48 self.zipfile = None
194 elif p.zipfile is not None:
196 # zipfile is a path. Copy to it.
197 dest_path = os.path.join(p.zipfile, arc_path)
203 # zipfile is a ZipFile object. Compress with it.
204 p.zipfile.write(filepath, arc_path)
226 p.zipfile = p.DST + "_temp_dir"
227 if os.path.exists(p.zipfile)
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/system/
workspace.py 32 import zipfile namespace
51 def create_zip(self, zip_path, source_path, zip_class=zipfile.ZipFile):
53 # zip_file = ZipFile(zip_path, 'w')
zipfileset.py 25 import zipfile namespace
43 return (temp_file, zipfile.ZipFile(temp_file))
zipfileset_unittest.py 28 import zipfile namespace
autoinstall.py 46 import zipfile namespace
264 # This is a replacement for ZipFile.extractall(), which is
302 # zipfile.extractall() extracts to a path without the
310 zip_file = zipfile.ZipFile(path, "r")
311 except zipfile.BadZipfile, err:
  /device/samsung/crespo4g/
releasetools.py 31 def FindImage(zipfile, basename):
33 for name in zipfile.namelist():
42 return common.File(matches[1], zipfile.read(matches[0]))
  /development/scripts/
divide_and_compress.py 43 import zipfile namespace
167 A new ZipFile object that points to the modified archive file.
179 compress_bit = zipfile.ZIP_STORED
181 compress_bit = zipfile.ZIP_DEFLATED
195 def OpenZipFileAtPath(self, path, mode=None, compress=zipfile.ZIP_DEFLATED):
204 return zipfile.ZipFile(path, mode)
206 return zipfile.ZipFile(path, mode, compress)
229 compress_bit = zipfile.ZIP_DEFLATE
    [all...]
divide_and_compress_test.py 28 import zipfile namespace
93 only called once on the new ZipFile object.
104 compress=zipfile.ZIP_DEFLATED,
125 source_zip = self.my_mox.CreateMock(zipfile.ZipFile)
143 dest_zip = mox.MockObject(zipfile.ZipFile)
210 """Create a mock ZipFile object for testSingleFileArchive.
217 mock_zip = self.my_mox.CreateMock(zipfile.ZipFile)
    [all...]
  /external/webkit/Tools/BuildSlaveSupport/
test-result-archive 26 import optparse, os, shutil, subprocess, sys, zipfile
107 zipper = zipfile.ZipFile(archiveFile, 'w', zipfile.ZIP_DEFLATED)
  /device/samsung/crespo/
releasetools.py 20 def FindRadio(zipfile):
22 for name in zipfile.namelist():
29 return zipfile.read(matches[0])
  /external/webkit/Tools/Scripts/
update-webkit-dependency 49 * If filename is requirements.zip and the contents of the zipfile are "requirements/x" then prefix = "."
50 * If filename is xyz.zip and the contents of the zipfile are xyz/abc/x" then prefix = "abc"
69 my $zipFile = "$file.zip";
74 print "Checking Last-Modified date of $zipFile...\n";
79 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
105 print "Downloading $zipFile...\n\n";
106 $result = system "curl -o \"$tmpAbsDir/$zipFile\" $libsURL";
107 die "Couldn't download $zipFile!" if $result;
109 $result = system "unzip", "-q", "-d", $tmpAbsDir, "$tmpAbsDir/$zipFile";
110 die "Couldn't unzip $zipFile." if $result
    [all...]
  /frameworks/base/tools/aapt/
printapk.cpp 4 #include <zipfile/zipfile.h>
  /build/tools/releasetools/
sign_target_files_apks 18 Signs all the APK files in a target-files zipfile, producing a new
80 import zipfile namespace
254 # put into a zipfile system/etc/security/otacerts.zip.
258 certs_zip = zipfile.ZipFile(tempfile, "w")
325 input_zip = zipfile.ZipFile(args[0], "r")
326 output_zip = zipfile.ZipFile(args[1], "w")
img_from_target_files 18 Given a target-files zipfile, produces an image zipfile suitable for
44 import zipfile namespace
182 output_zip = zipfile.ZipFile(args[1], "w", compression=zipfile.ZIP_DEFLATED)
check_target_files_signatures 53 import zipfile namespace
62 # Work around a bug in python's zipfile module that prevents opening
67 class MyZipInfo(zipfile.ZipInfo):
70 zipfile.ZipInfo = MyZipInfo
201 apk = zipfile.ZipFile(f, "r")
common.py 29 import zipfile namespace
276 Returns (tempdir, zipobj) where zipobj is a zipfile.ZipFile (of the
301 return tmp, zipfile.ZipFile(filename, "r")
413 """Given a target_files ZipFile, parse the META/apkcerts.txt file
613 zinfo = zipfile.ZipInfo(filename=filename,
ota_from_target_files 18 Given a target-files zipfile, produces an OTA package that installs
69 import zipfile namespace
101 """Return true if the zipfile.ZipInfo object passed in represents a
106 """Return true if the zipfile.ZipInfo object passed in represents a
440 ZipFile, and return a dict of {filename: File object}."""
457 ZipFile object."""
796 output_zip = zipfile.ZipFile(temp_zip_file, "w",
797 compression=zipfile.ZIP_DEFLATED)
  /external/srec/srec/clib/
voc_read.c 49 #include <zipfile/zipfile.h>
  /system/core/adb/
adb_client.c 7 #include <zipfile/zipfile.h>
  /external/chromium/chrome/common/extensions/docs/build/
directory.py 13 import zipfile namespace
635 # we pass zip_manifest_path to zipfile.getinfo(), which chokes on
640 zipfile.ZipFile.debug = 3
644 old_zip_file = zipfile.ZipFile(zip_path, 'r')
647 except zipfile.BadZipfile, msg:
660 zip_file = zipfile.ZipFile(zip_path, 'w')
  /development/scripts/app_engine_server/
memcache_zipserve.py 38 import zipfile namespace
573 zip_archive = zipfile.ZipFile(zipfilename)
576 logging.error('Can\'t open zipfile %s, cause: %s' % (zipfilename,
  /system/core/fastboot/
fastboot.c 41 #include <zipfile/zipfile.h>

Completed in 1584 milliseconds

1 2