Lines Matching refs:entry
217 ZipEntry entry = entries.nextElement(); in unzip() local
218 if (entry == null) { in unzip()
221 String filePath = destDir + File.separator + entry.getName(); in unzip()
225 if (entry.isDirectory()) { in unzip()
230 bis = new BufferedInputStream(zipFile.getInputStream(entry)); in unzip()
394 ZipEntry entry = null; in getJsonInZips() local
400 while ((entry = zin.getNextEntry()) != null) { in getJsonInZips()
401 if (entry.getName().toLowerCase().equals(jsonName)) { in getJsonInZips()
402 inputStream = zipFile.getInputStream(entry); in getJsonInZips()
438 final ZipEntry entry = entries.nextElement(); in getProfileJson() local
439 if (entry.getName().contains(RESOURCE_PATH)) { in getProfileJson()
440 String filePath = entry.getName(); in getProfileJson()
461 ZipEntry entry = zipFile.getEntry(fileName); in getFileStringFromZip() local
462 if (entry == null) { in getFileStringFromZip()
469 fileInputStream = zipFile.getInputStream(entry); in getFileStringFromZip()
536 ZipEntry entry = zipInputStream.getNextEntry(); in unzipFile() local
537 while (entry != null) { in unzipFile()
538 String filePath = destDirPath + File.separator + entry.getName(); in unzipFile()
543 if (!entry.isDirectory()) { in unzipFile()
550 entry = zipInputStream.getNextEntry(); in unzipFile()