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

1 2 3 4 5 6 7

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_bugzilla/
buildBugToolsZip.xml 5 <property name="zipfile" value="org.eclipse.build.tools_bugTools.zip"/>
7 <echo message="Bundling ${zipfile} ..."/>
8 <delete file="${zipfile}"/>
10 destfile="${zipfile}"
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/scripts_rss/
buildFeedToolsZip.xml 5 <property name="zipfile" value="org.eclipse.build.tools_feedTools.zip"/>
7 <echo message="Bundling ${zipfile} ..."/>
8 <delete file="${zipfile}"/>
10 destfile="${zipfile}"
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidZipFileTest.java 26 import java.util.zip.ZipFile;
32 * Basic tests for ZipFile.
101 ZipFile zipFile = new ZipFile(fileName);
105 // System.out.println("Contents of " + zipFile + ":");
106 for (fileList = zipFile.entries(); fileList.hasMoreElements();) {
113 zipFile.close();
124 ZipFile zipFile;
    [all...]
ZipFileTest.java 29 import java.util.zip.ZipFile;
45 ZipFile zipFile = new ZipFile(createZipFile(originalSize));
46 for (Enumeration<? extends ZipEntry> e = zipFile.entries(); e.hasMoreElements(); ) {
50 InputStream is = zipFile.getInputStream(zipEntry);
54 zipFile.close();
93 ZipFile zipFile = new ZipFile(f)
    [all...]
ZipEntryTest.java 26 import java.util.zip.ZipFile;
50 ZipFile zipFile = new ZipFile(f);
52 assertNotNull(filename, zipFile.getEntry(filename));
OldZipFileTest.java 34 import java.util.zip.ZipFile;
81 private ZipFile zfile;
85 * java.util.zip.ZipFile#close()
88 // Test for method void java.util.zip.ZipFile.close()
90 ZipFile zf = new ZipFile(fl);
128 * java.util.zip.ZipFile#getInputStream(java.util.zip.ZipEntry)
132 // java.util.zip.ZipFile.getInputStream(java.util.zip.ZipEntry)
170 zfile = new ZipFile(f);
  /system/core/libzipfile/
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...]
private.h 21 typedef struct Zipfile
37 } Zipfile;
39 int read_central_dir(Zipfile* file);
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"
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
ZipLocator.java 41 import java.util.zip.ZipFile;
49 private ZipFile zipfile; field in class:ZipLocator
63 return zipfile.getInputStream(entry);
72 zipfile = new ZipFile(new File(rootPath), ZipFile.OPEN_READ);
80 ZipEntry entry = zipfile.getEntry(name);
  /external/zlib/src/contrib/minizip/
zip.h 67 typedef zipFile__ *zipFile;
69 typedef voidp zipFile;
116 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
117 extern zipFile ZEXPORT zipOpen64 OF((const void *pathname, int append));
119 Create a zipfile.
127 If the zipfile cannot be opened, the return value is NULL.
128 Else, the return value is a zipFile Handle, usable with other function
132 /* Note : there is no delete function into a zipfile.
133 If you want delete file into a zipfile, you must open a zipfile, and create anothe
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 34 import java.util.zip.ZipFile;
54 private ZipFile zfile;
73 * java.util.zip.ZipFile#ZipFile(java.io.File)
76 // Test for method java.util.zip.ZipFile(java.io.File)
81 * java.util.zip.ZipFile#ZipFile(java.io.File, int)
86 ZipFile zip = new ZipFile(file, ZipFile.OPEN_DELETE | ZipFile.OPEN_READ)
    [all...]
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipFileTest.java 27 import java.util.zip.ZipFile;
49 private ZipFile zfile;
53 * @tests java.util.zip.ZipFile#ZipFile(java.io.File)
56 // Test for method java.util.zip.ZipFile(java.io.File)
59 ZipFile zip = new ZipFile(file);
65 * @tests java.util.zip.ZipFile#ZipFile(java.io.File, int)
70 ZipFile zip = new ZipFile(file, ZipFile.OPEN_DELET
    [all...]
  /tools/motodev/src/plugins/logger.collector/src/com/motorola/studio/android/logger/collector/util/
ZipUtil.java 27 import java.util.zip.ZipFile;
154 zipFile(fileList[i]);
166 private void zipFile(File file) throws IOException
206 File zipFile = new File(zipFilePath);
208 ZipFile zip = new ZipFile(zipFile);
225 * @param zipFile The zip file
230 private static void unzipEntry(ZipFile zipFile, ZipEntry zipEntry, File folder)
    [all...]
  /external/llvm/test/Transforms/ObjCARC/
invoke.ll 15 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
18 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
20 define void @test0(i8* %zipFile) {
22 call i8* @objc_retain(i8* %zipFile) nounwind
23 call void @use_pointer(i8* %zipFile)
24 invoke void bitcast (i8* (i8*, i8*, ...)* @objc_msgSend to void (i8*)*)(i8* %zipFile)
28 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
34 call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
42 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !0
46 ; CHECK: call void @objc_release(i8* %zipFile) nounwind, !clang.imprecise_release !
    [all...]
  /build/tools/zipalign/
ZipAlign.cpp 20 #include "ZipFile.h"
47 static int copyAndAlign(ZipFile* pZin, ZipFile* pZout, int alignment)
103 ZipFile zin, zout;
120 if (zin.open(inFileName, ZipFile::kOpenReadOnly) != NO_ERROR) {
125 ZipFile::kOpenReadWrite|ZipFile::kOpenCreate|ZipFile::kOpenTruncate)
145 ZipFile zipFile;
    [all...]
Android.mk 13 ZipFile.cpp
  /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/
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...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 26 import java.util.zip.ZipFile;
117 ZipFile zipFile;
123 zipFile = new ZipFile(fileName);
139 ZipEntry entry = zipFile.getEntry(CLASSES_DEX);
143 zipFile.close();
147 InputStream zis = zipFile.getInputStream(entry);
  /frameworks/base/tools/aapt/
Main.h 15 #include "ZipFile.h"
51 ssize_t processAssets(Bundle* bundle, ZipFile* zip, const sp<AaptAssets>& assets);
  /libcore/luni/src/main/java/java/util/zip/
ZipException.java 23 * This runtime exception is thrown by {@code ZipFile} and {@code
26 * @see ZipFile
  /development/scripts/
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...]
  /frameworks/base/test-runner/src/junit/runner/
TestCaseClassLoader.java 158 ZipFile zipFile= null;
164 zipFile= new ZipFile(archive);
168 ZipEntry entry= zipFile.getEntry(fileName);
173 stream= zipFile.getInputStream(entry);
180 zipFile.close();

Completed in 667 milliseconds

1 2 3 4 5 6 7