HomeSort by relevance Sort by last modified time
    Searched defs:zipFile (Results 1 - 25 of 26) sorted by null

1 2

  /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...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipEntryTest.java 25 import java.util.zip.ZipFile;
46 ZipFile zipFile = new ZipFile(f);
48 assertNotNull(filename, zipFile.getEntry(filename));
ZipFileTest.java 27 import java.util.zip.ZipFile;
43 ZipFile zipFile = new ZipFile(createZipFile(originalSize));
44 for (Enumeration<? extends ZipEntry> e = zipFile.entries(); e.hasMoreElements(); ) {
48 InputStream is = zipFile.getInputStream(zipEntry);
  /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();
  /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();
  /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...]
  /libcore/junit/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/chromium/third_party/zlib/contrib/minizip/
zip.h 8 Multi volume ZipFile (span) are not supported.
67 typedef zipFile__ *zipFile;
69 typedef voidp zipFile;
116 extern zipFile ZEXPORT zipOpen OF((const char *pathname, int append));
118 Create a zipfile.
126 If the zipfile cannot be opened, the return value is NULL.
127 Else, the return value is a zipFile Handle, usable with other function
131 /* Note : there is no delete function into a zipfile.
132 If you want delete file into a zipfile, you must open a zipfile, and create anothe
    [all...]
  /external/zlib/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...]
  /development/tools/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRecorder.java 269 FileOutputStream zipFile = new FileOutputStream(ROOT_DIR + "/" + zipFileName);
270 ZipOutputStream out = new ZipOutputStream(zipFile);
  /frameworks/base/core/java/com/android/internal/content/
NativeLibraryHelper.java 20 import java.util.zip.ZipFile;
75 private static int listPackageSharedLibsForAbiLI(ZipFile zipFile,
83 Slog.d(TAG, "Checking " + zipFile.getName() + " for shared libraries of CPU ABI type "
87 Enumeration<? extends ZipEntry> entries = zipFile.entries();
161 private static int listPackageGdbServerLI(ZipFile zipFile, String cpuAbi,
165 Enumeration<? extends ZipEntry> entries = zipFile.entries();
200 public static int listPackageNativeBinariesLI(ZipFile zipFile,
    [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();
  /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/packages/DefaultContainerService/src/com/android/defcontainer/
DefaultContainerService.java 54 import java.util.zip.ZipFile;
221 ZipFile zipFile;
224 zipFile = new ZipFile(codeFile);
228 NativeLibraryHelper.listPackageNativeBinariesLI(zipFile, nativeFiles);
273 InputStream is = zipFile.getInputStream(entry.first);
  /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...]
  /prebuilt/common/ant/
ant.jar 
  /cts/tools/dx-tests/lib/
junit.jar 
  /cts/tools/utils/lib/
junit.jar 
  /cts/tools/vm-tests/lib/
junit.jar 
  /prebuilt/common/jarjar/
jarjar-1.0rc8.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 665 milliseconds

1 2