Searched defs:zipFile (Results 1 - 2 of 2) sorted by relevance

/libcore/dalvik/src/main/java/dalvik/system/
H A DDexPathList.java419 private ZipFile zipFile; field in class:DexPathList.Element
452 zipFile = new ZipFile(zip);
461 zipFile = null;
475 private boolean isZipEntryExistsAndStored(ZipFile zipFile, String path) { argument
476 ZipEntry entry = zipFile.getEntry(path);
488 } else if (zipFile != null) {
490 if (isZipEntryExistsAndStored(zipFile, entryName)) {
514 if (zipFile == null || zipFile.getEntry(name) == null) {
/libcore/luni/src/main/java/java/util/jar/
H A DJarFile.java321 static HashMap<String, byte[]> readMetaEntries(ZipFile zipFile, argument
324 List<ZipEntry> metaEntries = getMetaEntries(zipFile);
338 zipFile.getInputStream(entry)));
350 InputStream is = zipFile.getInputStream(entry);
425 private static List<ZipEntry> getMetaEntries(ZipFile zipFile) { argument
428 Enumeration<? extends ZipEntry> allEntries = zipFile.entries();

Completed in 402 milliseconds