Searched defs:je (Results 1 - 3 of 3) 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/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();

Completed in 166 milliseconds