Searched refs:jarEntry (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/test/java/libcore/java/util/jar/
H A DOldJarEntryTest.java31 private JarEntry jarEntry; field in class:OldJarEntryTest
59 jarEntry = null;
61 newJarEntry = new JarEntry(jarEntry);
75 jarEntry = new JarEntry(zipEntry);
76 assertNotNull("Jar entry is null", jarEntry);
77 assertEquals("Wrong entry constructed--wrong name", entryName, jarEntry
79 assertEquals("Wrong entry constructed--wrong size", 311, jarEntry
93 jarEntry = attrJar.getJarEntry("META-INF/");
94 jarEntry.getAttributes();
105 jarEntry
[all...]
/libcore/luni/src/main/java/java/util/jar/
H A DJarInputStream.java42 private JarEntry jarEntry; field in class:JarInputStream
157 verifier.addMetaEntry(jarEntry.getName(),
188 jarEntry = mEntry;
190 jarEntry.setAttributes(null);
192 jarEntry = (JarEntry) super.getNextEntry();
193 if (jarEntry == null) {
197 isMeta = jarEntry.getName().toUpperCase(Locale.US).startsWith(JarFile.META_DIR);
201 verStream = verifier.initEntry(jarEntry.getName());
206 return jarEntry;
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DZipEntryTest.java71 JarEntry jarEntry = new JarEntry("foo");
72 jarEntry.setExtra(extra);
73 assertSame("Expected no defensive copy of extra", extra, jarEntry.getExtra());
75 ZipEntry clone = (ZipEntry) jarEntry.clone();
/libcore/luni/src/main/java/libcore/net/url/
H A DJarURLConnectionImpl.java58 private JarEntry jarEntry; field in class:JarURLConnectionImpl
188 return jarEntry;
200 jarEntry = jarFile.getJarEntry(getEntryName());
201 if (jarEntry == null) {
223 if (jarEntry == null) {
227 .getInputStream(jarEntry), jarFile);
276 if (jarEntry == null) {
306 if (jarEntry == null) {
/libcore/luni/src/test/java/libcore/java/net/
H A DOldJarURLConnectionTest.java296 JarEntry jarEntry = new JarEntry(entry);
297 out.putNextEntry(jarEntry);

Completed in 3225 milliseconds