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

/libcore/ojluni/src/main/java/java/util/jar/
H A DJarEntry.java69 * @param je the <code>JarEntry</code> to copy
71 public JarEntry(JarEntry je) { argument
72 this((ZipEntry)je);
73 this.attr = je.attr;
74 this.certs = je.certs;
75 this.signers = je.signers;
H A DJarVerifier.java111 public void beginEntry(JarEntry je, ManifestEntryVerifier mev) argument
114 if (je == null)
118 debug.println("beginEntry "+je.getName());
121 String name = je.getName();
138 if (je.isDirectory()) {
139 mev.setEntry(null, je);
147 mev.setEntry(null, je);
157 if (je.isDirectory()) {
158 mev.setEntry(null, je);
174 mev.setEntry(name, je);
435 VerifierStream(Manifest man, JarEntry je, InputStream is, JarVerifier jv) argument
887 getCodeSource(URL url, JarFile jar, JarEntry je) argument
[all...]
/libcore/ojluni/src/main/java/javax/crypto/
H A DJarVerifier.java109 JarEntry je = jf.getJarEntry("cryptoPerms");
110 if (je == null) {
116 appPerms.load(jf.getInputStream(je));
H A DJceSecurity.java301 JarEntry je = (JarEntry)entries.nextElement();
304 if (je.getName().startsWith("default_")) {
305 is = jf.getInputStream(je);
307 } else if (je.getName().startsWith("exempt_")) {
308 is = jf.getInputStream(je);
322 JarVerifier.verifyPolicySigned(je.getCertificates());
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DURLJarFile.java230 private JarEntry je; field in class:URLJarFile.URLJarFileEntry
232 URLJarFileEntry(JarEntry je) { argument
233 super(je);
234 this.je=je;
250 Certificate[] certs = je.getCertificates();
255 CodeSigner[] csg = je.getCodeSigners();
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
H A DJarInputStreamTest.java62 JarEntry je = jis.getNextJarEntry();
63 while (je != null) {
64 if (je.getName().equals(A_CLASS)) {
67 je = jis.getNextJarEntry();
99 JarEntry je = jis.getNextJarEntry();
100 while (je != null) {
101 actual.add(je.toString());
102 je = jis.getNextJarEntry();
148 JarEntry je = jis.getNextJarEntry();
149 while (je !
[all...]
H A DJarFileTest.java323 JarEntry je = enumeration.nextElement();
324 jarFile.getEntry(je.getName());
329 JarEntry je = enumeration.nextElement();
332 jarFile.getEntry(je.getName());
360 JarEntry je = enumeration.nextElement();
361 jarFile.getJarEntry(je.getName());
366 JarEntry je = enumeration.nextElement();
369 jarFile.getJarEntry(je.getName());
/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldJarEntryTest.java129 JarEntry je = jarFile.getJarEntry(entryName);
130 assertNotNull("Jar entry is null", je);
131 jarEntry = new JarEntry(je);
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DOldAndroidZipStressTest.java40 JarEntry je = jarFile.getJarEntry("AndroidManifest.xml");
46 InputStream is = jarFile.getInputStream(je);
50 Certificate[] certs = je != null ? je.getCertificates() : null;
/libcore/luni/src/test/java/libcore/java/net/
H A DOldJarURLConnectionTest.java80 JarEntry je = juc.getJarEntry();
82 InputStream is = jf.getInputStream(je);
83 is.skip(je.getSize());

Completed in 152 milliseconds