Home
last modified time | relevance | path

Searched refs:je (Results 1 – 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/java/util/jar/
DJarEntry.java71 public JarEntry(JarEntry je) { in JarEntry() argument
72 this((ZipEntry)je); in JarEntry()
73 this.attr = je.attr; in JarEntry()
74 this.certs = je.certs; in JarEntry()
75 this.signers = je.signers; in JarEntry()
DJarVerifier.java112 public void beginEntry(JarEntry je, ManifestEntryVerifier mev) in beginEntry() argument
115 if (je == null) in beginEntry()
119 debug.println("beginEntry "+je.getName()); in beginEntry()
122 String name = je.getName(); in beginEntry()
139 if (je.isDirectory()) { in beginEntry()
140 mev.setEntry(null, je); in beginEntry()
153 mev.setEntry(null, je); in beginEntry()
167 if (je.isDirectory()) { in beginEntry()
168 mev.setEntry(null, je); in beginEntry()
186 mev.setEntry(name, je); in beginEntry()
[all …]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
DJarInputStreamTest.java62 JarEntry je = jis.getNextJarEntry(); in test_ConstructorLjava_io_InputStream() local
63 while (je != null) { in test_ConstructorLjava_io_InputStream()
64 if (je.getName().equals(A_CLASS)) { in test_ConstructorLjava_io_InputStream()
67 je = jis.getNextJarEntry(); in test_ConstructorLjava_io_InputStream()
99 JarEntry je = jis.getNextJarEntry(); in test_getNextJarEntry_Ex() local
100 while (je != null) { in test_getNextJarEntry_Ex()
101 actual.add(je.toString()); in test_getNextJarEntry_Ex()
102 je = jis.getNextJarEntry(); in test_getNextJarEntry_Ex()
148 JarEntry je = jis.getNextJarEntry(); in test_getNextJarEntry() local
149 while (je != null) { in test_getNextJarEntry()
[all …]
DJarFileTest.java327 JarEntry je = enumeration.nextElement(); in test_getEntryLjava_lang_String() local
328 jarFile.getEntry(je.getName()); in test_getEntryLjava_lang_String()
333 JarEntry je = enumeration.nextElement(); in test_getEntryLjava_lang_String() local
336 jarFile.getEntry(je.getName()); in test_getEntryLjava_lang_String()
364 JarEntry je = enumeration.nextElement(); in test_getJarEntryLjava_lang_String() local
365 jarFile.getJarEntry(je.getName()); in test_getJarEntryLjava_lang_String()
370 JarEntry je = enumeration.nextElement(); in test_getJarEntryLjava_lang_String() local
373 jarFile.getJarEntry(je.getName()); in test_getJarEntryLjava_lang_String()
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
DURLJarFile.java257 private JarEntry je; field in URLJarFile.URLJarFileEntry
259 URLJarFileEntry(JarEntry je) { in URLJarFileEntry() argument
260 super(je); in URLJarFileEntry()
261 this.je=je; in URLJarFileEntry()
277 Certificate[] certs = je.getCertificates(); in getCertificates()
282 CodeSigner[] csg = je.getCodeSigners(); in getCodeSigners()
/libcore/ojluni/src/main/java/javax/crypto/
DJceSecurity.java314 JarEntry je = entries.nextElement(); in loadPolicies() local
317 if (je.getName().startsWith("default_")) { in loadPolicies()
318 is = jf.getInputStream(je); in loadPolicies()
320 } else if (je.getName().startsWith("exempt_")) { in loadPolicies()
321 is = jf.getInputStream(je); in loadPolicies()
335 JarVerifier.verifyPolicySigned(je.getCertificates()); in loadPolicies()
DJarVerifier.java105 JarEntry je = jf.getJarEntry("cryptoPerms"); in verify() local
106 if (je == null) { in verify()
112 appPerms.load(jf.getInputStream(je)); in verify()
/libcore/luni/src/test/java/libcore/java/util/jar/
DOldJarEntryTest.java129 JarEntry je = jarFile.getJarEntry(entryName); in test_ConstructorLjava_util_jar_JarEntry() local
130 assertNotNull("Jar entry is null", je); in test_ConstructorLjava_util_jar_JarEntry()
131 jarEntry = new JarEntry(je); in test_ConstructorLjava_util_jar_JarEntry()
/libcore/luni/src/test/java/libcore/java/util/zip/
DOldAndroidZipStressTest.java40 JarEntry je = jarFile.getJarEntry("AndroidManifest.xml"); in checkJarCertificates() local
46 InputStream is = jarFile.getInputStream(je); in checkJarCertificates()
50 Certificate[] certs = je != null ? je.getCertificates() : null; in checkJarCertificates()
/libcore/luni/src/test/java/libcore/java/net/
DOldJarURLConnectionTest.java80 JarEntry je = juc.getJarEntry(); in test_getCertificates() local
82 InputStream is = jf.getInputStream(je); in test_getCertificates()
83 is.skip(je.getSize()); in test_getCertificates()