HomeSort by relevance Sort by last modified time
    Searched refs:jarEntry (Results 1 - 6 of 6) sorted by null

  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarEntryTest.java 26 import java.util.jar.JarEntry;
36 private JarEntry jarEntry;
70 * @tests java.util.jar.JarEntry#JarEntry(java.util.jar.JarEntry)
73 JarEntry newJarEntry = new JarEntry(jarFile.getJarEntry(entryName));
76 jarEntry = null;
78 newJarEntry = new JarEntry(jarEntry)
    [all...]
  /libcore/luni/src/main/java/java/util/jar/
JarInputStream.java 40 private JarEntry mEntry;
42 private JarEntry jarEntry;
125 * Returns the next {@code JarEntry} contained in this stream or {@code
132 public JarEntry getNextJarEntry() throws IOException {
133 return (JarEntry) getNextEntry();
161 verifier.addMetaEntry(jarEntry.getName(),
192 jarEntry = mEntry;
194 jarEntry.setAttributes(null);
196 jarEntry = (JarEntry) super.getNextEntry()
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/jar/
JarURLConnectionImpl.java 38 import java.util.jar.JarEntry;
60 private JarEntry jarEntry;
190 * Returns the JarEntry of the entry referenced by this {@code
193 * @return the JarEntry referenced
199 public JarEntry getJarEntry() throws IOException {
201 return jarEntry;
206 * Look up the JarEntry of the entry referenced by this {@code
213 jarEntry = jarFile.getJarEntry(getEntryName());
214 if (jarEntry == null)
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
OldJarURLConnectionTest.java 34 import java.util.jar.JarEntry;
80 JarEntry je = juc.getJarEntry();
140 assertEquals("Returned incorrect JarEntry", "plus.bmp", juc
146 assertNull("Returned incorrect JarEntry", juc.getJarEntry());
236 JarEntry jarEntry1 = connection.getJarEntry();
240 JarEntry jarEntry2 = connection.getJarEntry();
294 JarEntry jarEntry = new JarEntry(entry);
295 out.putNextEntry(jarEntry);
    [all...]
  /frameworks/base/core/java/android/content/pm/
PackageParser.java 53 import java.util.jar.JarEntry;
337 private Certificate[] loadCertificates(JarFile jarFile, JarEntry je,
340 // We must read the stream for the JarEntry to retrieve
484 JarEntry jarEntry = jarFile.getJarEntry("AndroidManifest.xml");
485 certs = loadCertificates(jarFile, jarEntry, readBuffer);
489 + jarEntry.getName() + "; ignoring!");
495 Log.i(TAG, "File " + mArchiveSourcePath + ": entry=" + jarEntry
510 JarEntry je = (JarEntry)entries.nextElement()
    [all...]
  /prebuilt/common/eclipse/
org.eclipse.equinox.common_3.4.0.v20080421-2006.jar 

Completed in 4695 milliseconds