Searched refs:zipEntry (Results 1 – 5 of 5) sorted by relevance
39 ZipEntry zipEntry = zipFile.getEntry(zipEntryName); in instantiateClassLoader() local40 if (zipEntry == null) { in instantiateClassLoader()44 final int zipEntrySize = (int) zipEntry.getSize(); in instantiateClassLoader()46 InputStream zipIS = zipFile.getInputStream(zipEntry); in instantiateClassLoader()
176 ZipEntry zipEntry; in runTestsForKatFile() local178 while ((zipEntry = zipIn.getNextEntry()) != null) { in runTestsForKatFile()179 String entryName = zipEntry.getName(); in runTestsForKatFile()183 entryContents = new byte[(int) zipEntry.getSize()]; in runTestsForKatFile()
95 public static File getFilefromZip(ZipFile zipFile, ZipEntry zipEntry) throws IOException { in getFilefromZip() argument96 String fileName = zipEntry.getName(); in getFilefromZip()99 InputStream iStream = zipFile.getInputStream(zipEntry); in getFilefromZip()
229 ZipEntry zipEntry = entries.next(); in checkJarSigning_wellFormed() local230 jarFile.getInputStream(zipEntry).skip(Long.MAX_VALUE); in checkJarSigning_wellFormed()231 if ("Test.class".equals(zipEntry.getName())) { in checkJarSigning_wellFormed()232 assertNotNull(jarFile.getCertificates(zipEntry)); in checkJarSigning_wellFormed()233 assertNotNull(jarFile.getCertificateChains(zipEntry)); in checkJarSigning_wellFormed()
137 ZipEntry zipEntry = zis.getNextEntry(); in zipInputStreamGetNextEntry_whenZipFileHasNormalEntriesAndChangeEnabled_doesNotThrow() local188 ZipEntry zipEntry = zis.getNextEntry(); in zipInputStreamGetNextEntry_whenZipFileHasNormalAndDangerousEntriesAndChangeDisabled_doesNotThrow() local