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

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
ZipArchiveHandle.java 3 import java.util.zip.ZipFile;
6 final ZipFile zipFile;
8 public ZipArchiveHandle(ZipFile zipFile) {
9 this.zipFile = zipFile;
FileMap.java 11 import java.util.zip.ZipFile;
15 private ZipFile zipFile;
127 public boolean createFromZip(String origFileName, ZipFile zipFile, ZipEntry entry, int length,
130 this.zipFile = zipFile;
138 long offset = guessOffsetFor(zipFile, entry);
184 long guessOffsetFor(ZipFile zipFile, ZipEntry zipEntry)
    [all...]
ZipFileRO.java 12 import java.util.zip.ZipFile;
55 mHandle.set(new ZipArchiveHandle(new ZipFile(zipFileName)));
71 ZipEntry entry = mHandle.zipFile.getEntry(name);
169 cookie.set(this.mHandle.zipFile.entries());
283 if (!newMap.createFromZip(mFileName, mHandle.zipFile, entry.entry, actualLen, true)) {
Asset.java 16 import java.util.zip.ZipFile;
1138 ZipFile zipFile;
1143 // ZipEntry zipEntry = zipFile.getEntry(entryName)
    [all...]
  /external/desugar/java/com/google/devtools/build/android/desugar/io/
ZipInputFileProvider.java 23 import java.util.zip.ZipFile;
30 private final ZipFile zipFile;
34 this.zipFile = new ZipFile(root.toFile());
39 zipFile.close();
49 ZipEntry zipEntry = zipFile.getEntry(filename);
56 return zipFile.getInputStream(zipFile.getEntry(filename));
62 Iterators.forEnumeration(zipFile.entries()), Functions.toStringFunction())
    [all...]
  /art/test/656-annotation-lookup-generic-jni/src-art/
Main.java 23 import java.util.zip.ZipFile;
31 ZipFile zipFile = new ZipFile(jarFilename);
32 ZipEntry zipEntry = zipFile.getEntry("classes.dex");
33 InputStream inputStream = zipFile.getInputStream(zipEntry);
54 zipFile.close();
  /cts/tests/tests/classloaderfactory/src/android/app/classloaderfactory/cts/
InMemoryDexClassLoaderFactory.java 24 import java.util.zip.ZipFile;
34 ZipFile zipFile = new ZipFile(AppComponentFactoryTest.writeSecondaryApkToDisk(aInfo));
39 ZipEntry zipEntry = zipFile.getEntry(zipEntryName);
46 InputStream zipIS = zipFile.getInputStream(zipEntry);
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
AntJarProcessor.java 63 protected void zipFile(InputStream is, ZipOutputStream zOut, String vPath,
76 super.zipFile(new ByteArrayInputStream(struct.data),
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
ZipDexContainer.java 53 import java.util.zip.ZipFile;
85 ZipFile zipFile = getZipFile();
87 Enumeration<? extends ZipEntry> entriesEnumeration = zipFile.entries();
92 if (!isDex(zipFile, entry)) {
101 zipFile.close();
113 ZipFile zipFile = getZipFile();
115 ZipEntry entry = zipFile.getEntry(entryName);
120 return loadEntry(zipFile, entry)
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
Main.java 26 import java.util.zip.ZipFile;
121 ZipFile zipFile;
123 zipFile = new ZipFile(fileName);
138 result.add(openClassesDexZipFileEntry(zipFile, classesDexNumber));
150 RandomAccessFile openClassesDexZipFileEntry(ZipFile zipFile, int classesDexNumber)
160 ZipEntry entry = zipFile.getEntry(zipEntryName);
162 zipFile.close()
    [all...]
  /build/make/tools/zipalign/
ZipAlign.cpp 20 #include "ZipFile.h"
67 static int copyAndAlign(ZipFile* pZin, ZipFile* pZout, int alignment, bool zopfli,
132 ZipFile zin, zout;
149 if (zin.open(inFileName, ZipFile::kOpenReadOnly) != OK) {
154 ZipFile::kOpenReadWrite|ZipFile::kOpenCreate|ZipFile::kOpenTruncate)
175 ZipFile zipFile;
    [all...]
  /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...]
  /external/vogar/src/vogar/target/
ClassPathScanner.java 31 import java.util.zip.ZipFile;
165 ZipFile zipFile = new ZipFile(jarFile);
166 for (Enumeration<? extends ZipEntry> e = zipFile.entries(); e.hasMoreElements(); ) {
  /dalvik/dx/src/com/android/dex/
Dex.java 45 import java.util.zip.ZipFile;
108 ZipFile zipFile = new ZipFile(file);
109 ZipEntry entry = zipFile.getEntry(DexFormat.DEX_IN_JAR_NAME);
111 try (InputStream inputStream = zipFile.getInputStream(entry)) {
114 zipFile.close();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowLegacyAssetManager.java 421 String zipFile = pathString.substring(pathString.lastIndexOf(":") + 1, pathString.indexOf("!"));
426 ZipInputStream zis = new ZipInputStream(new FileInputStream(zipFile));
    [all...]
  /developers/build/lib/
assetstudio.jar 
  /developers/build/prebuilts/androidtv/leanback/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActiveNotifications/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivityInstrumentation/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AgendaData/gradle/wrapper/
gradle-wrapper.jar 
  /developers/build/prebuilts/gradle/AlwaysOn/gradle/wrapper/
gradle-wrapper.jar 

Completed in 2245 milliseconds

1 2 3 4 5 6 7 8 91011>>