Home
last modified time | relevance | path

Searched refs:zipEntry (Results 1 – 5 of 5) sorted by relevance

/cts/tests/tests/classloaderfactory/src/android/app/classloaderfactory/cts/
DInMemoryDexClassLoaderFactory.java39 ZipEntry zipEntry = zipFile.getEntry(zipEntryName); in instantiateClassLoader() local
40 if (zipEntry == null) { in instantiateClassLoader()
44 final int zipEntrySize = (int) zipEntry.getSize(); in instantiateClassLoader()
46 InputStream zipIS = zipFile.getInputStream(zipEntry); in instantiateClassLoader()
/cts/tests/tests/keystore/src/android/keystore/cts/
DAESCipherNistCavpKatTest.java176 ZipEntry zipEntry; in runTestsForKatFile() local
178 while ((zipEntry = zipIn.getNextEntry()) != null) { in runTestsForKatFile()
179 String entryName = zipEntry.getName(); in runTestsForKatFile()
183 entryContents = new byte[(int) zipEntry.getSize()]; in runTestsForKatFile()
/cts/tools/release-parser/src/com/android/cts/releaseparser/
DZipParser.java95 public static File getFilefromZip(ZipFile zipFile, ZipEntry zipEntry) throws IOException { in getFilefromZip() argument
96 String fileName = zipEntry.getName(); in getFilefromZip()
99 InputStream iStream = zipFile.getInputStream(zipEntry); in getFilefromZip()
/cts/tests/tests/util/src/android/util/cts/
DStrictJarFileTest.java229 ZipEntry zipEntry = entries.next(); in checkJarSigning_wellFormed() local
230 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()
/cts/hostsidetests/security/app/src/android/security/cts/
DZipPathValidatorDeviceTest.java137 ZipEntry zipEntry = zis.getNextEntry(); in zipInputStreamGetNextEntry_whenZipFileHasNormalEntriesAndChangeEnabled_doesNotThrow() local
188 ZipEntry zipEntry = zis.getNextEntry(); in zipInputStreamGetNextEntry_whenZipFileHasNormalAndDangerousEntriesAndChangeDisabled_doesNotThrow() local