/external/zlib/contrib/minizip/ |
zip.h | 8 Multi volume ZipFile (span) are not supported. 65 typedef zipFile__ *zipFile; 67 typedef voidp zipFile; 114 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append)); 116 Create a zipfile. 124 If the zipfile cannot be opened, the return value is NULL. 125 Else, the return value is a zipFile Handle, usable with other function 129 /* Note : there is no delete function into a zipfile. 130 If you want delete file into a zipfile, you must open a zipfile, and create anothe [all...] |
zip.c | 141 voidpf filestream; /* io structore of the zipfile */ 146 uLong begin_pos; /* position of the beginning of the zipfile */ 433 Locate the Central directory of a zipfile (at the end, just before 499 extern zipFile ZEXPORT zipOpen2 (pathname, append, globalcomment, pzlib_filefunc_def) 539 /* now we add file in a zipfile */ 544 uLong byte_before_the_zipfile;/* byte before the zipfile, (>0 for sfx)*/ 602 /* zipfile global comment length */ 679 return (zipFile)zi; 683 extern zipFile ZEXPORT zipOpen (pathname, append) 696 zipFile file [all...] |
minizip.c | 302 zipFile zf; 360 printf("error in opening %s in zipfile\n",filenameinzip); 388 printf("error in writing %s in the zipfile\n", 404 printf("error in closing %s in the zipfile\n",
|
/dalvik/libcore/archive/src/main/native/ |
zipsup.c | 65 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile)); 74 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 78 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 83 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 91 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, HyZipEntry * entry, 94 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, HyZipEntry * entry, 97 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile)); 99 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 102 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 105 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, HyZipEntry * entry [all...] |
zipsup.h | 164 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 167 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 170 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile)); 172 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 175 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 178 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 182 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, 187 PROTOTYPE ((HyPortLibrary * portLib, char *filename, HyZipFile * zipFile, 193 PROTOTYPE ((HyPortLibrary * portLib, struct HyZipFile * zipFile)); 195 PROTOTYPE ((HyPortLibrary * portLib, HyZipFile * zipFile, [all...] |
/external/webkit/WebKitTools/Scripts/ |
update-webkit-auxiliary-libs | 53 my $zipFile = "$file.zip"; 54 my $auxiliaryLibsURL = "http://developer.apple.com/opensource/internet/$zipFile"; 58 print "Checking Last-Modified date of $zipFile...\n"; 61 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n" if $result; 77 print "Downloading $zipFile...\n\n"; 78 $result = system "curl -o \"$tmpDir/$zipFile\" $auxiliaryLibsURL"; 79 die "Couldn't download $zipFile!" if $result; 81 $result = system "unzip", "-q", "-d", $tmpDir, "$tmpDir/$zipFile"; 82 die "Couldn't unzip $zipFile." if $result;
|
update-webkit-support-libs | 45 my $zipFile = "$file.zip"; 47 my $pathToZip = File::Spec->catfile($zipDirectory, $zipFile); 51 # Make sure the file zipfile exists and matches the expected MD5 before doing anything. 53 -f $pathToZip or dieAndInstructToDownload("$zipFile could not be find in your root source directory."); 57 $actualMD5 eq $expectedMD5 or dieAndInstructToDownload("$zipFile is out of date."); 59 print "Checking mod-date of $zipFile...\n"; 79 die "Couldn't unzip $zipFile." if $result; 120 Please download $zipFile from:
|
/frameworks/base/tests/CoreTests/android/core/ |
ZipFileTest.java | 28 import java.util.zip.ZipFile; 34 * Basic tests for ZipFile. 105 ZipFile zipFile = new ZipFile(fileName); 109 // System.out.println("Contents of " + zipFile + ":"); 110 for (fileList = zipFile.entries(); fileList.hasMoreElements();) { 117 zipFile.close(); 128 ZipFile zipFile; [all...] |
/dalvik/tools/dexdeps/src/com/android/dexdeps/ |
Main.java | 26 import java.util.zip.ZipFile; 94 ZipFile zipFile; 100 zipFile = new ZipFile(mInputFileName); 116 ZipEntry entry = zipFile.getEntry(CLASSES_DEX); 120 zipFile.close(); 124 InputStream zis = zipFile.getInputStream(entry);
|
/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...] |
/dalvik/dx/src/junit/runner/ |
TestCaseClassLoader.java | 159 ZipFile zipFile= null; 165 zipFile= new ZipFile(archive); 169 ZipEntry entry= zipFile.getEntry(fileName); 174 stream= zipFile.getInputStream(entry); 181 zipFile.close();
|
/dalvik/libcore/luni/src/test/java/junit/runner/ |
TestCaseClassLoader.java | 159 ZipFile zipFile= null; 165 zipFile= new ZipFile(archive); 169 ZipEntry entry= zipFile.getEntry(fileName); 174 stream= zipFile.getInputStream(entry); 181 zipFile.close();
|
/external/junit/src/junit/runner/ |
TestCaseClassLoader.java | 14 import java.util.zip.ZipFile; 173 ZipFile zipFile= null; 179 zipFile= new ZipFile(archive); 183 ZipEntry entry= zipFile.getEntry(fileName); 188 stream= zipFile.getInputStream(entry); 195 zipFile.close();
|
/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();
|
/development/tools/monkeyrunner/src/com/android/monkeyrunner/ |
MonkeyRecorder.java | 269 FileOutputStream zipFile = new FileOutputStream(ROOT_DIR + "/" + zipFileName); 270 ZipOutputStream out = new ZipOutputStream(zipFile);
|
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/ |
Archive.java | 23 import org.apache.commons.compress.archivers.zip.ZipFile;
857 ZipFile zipFile = null;
859 zipFile = new ZipFile(archiveFile);
876 Enumeration<ZipArchiveEntry> entries = zipFile.getEntries();
882 // ZipFile entries should have forward slashes, but not all Zip
[all...] |
/frameworks/base/test-runner/src/android/test/ |
ClassPathPackageInfoSource.java | 33 import java.util.zip.ZipFile; 262 ZipFile zipFile = new ZipFile(jarFile); 263 Enumeration<? extends ZipEntry> entries = zipFile.entries();
|
/cts/tools/host/test/com/android/cts/ |
ConsoleTests.java | 247 String zipFile = ROOT + File.separator + packageName + ".zip"; 248 ZipOutputStream out = new ZipOutputStream(new FileOutputStream(zipFile));
|
/cts/tools/host/src/com/android/cts/ |
HostConfig.java | 33 import java.util.zip.ZipFile; 619 ZipFile zipFile = new ZipFile(packagePath); 620 Enumeration<? extends ZipEntry> entries = zipFile.entries(); 637 writeToFile(zipFile.getInputStream(entry), filePath); [all...] |
/external/sonivox/jet_tools/JetCreator/ |
JetCreator.py | [all...] |
/prebuilt/common/ant/ |
ant.jar | |
/frameworks/base/services/java/com/android/server/ |
PackageManagerService.java | 120 import java.util.zip.ZipFile; [all...] |
/cts/tools/dx-tests/lib/ |
junit.jar | |
/cts/tools/utils/lib/ |
junit.jar | |
/cts/tools/vm-tests/lib/ |
junit.jar | |