Searched defs:getEntry (Results 1 - 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/util/
H A DManifestEntryVerifier.java179 public JarEntry getEntry() method in class:ManifestEntryVerifier
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DURLJarFile.java130 public ZipEntry getEntry(String name) { method in class:URLJarFile
131 ZipEntry ze = super.getEntry(name);
/libcore/ojluni/src/main/java/java/lang/
H A DThreadLocal.java163 ThreadLocalMap.Entry e = map.getEntry(this);
413 private Entry getEntry(ThreadLocal<?> key) { method in class:ThreadLocal.ThreadLocalMap
423 * Version of getEntry method for use when key is not found in
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarFile.java214 return (JarEntry)getEntry(name);
230 public ZipEntry getEntry(String name) { method in class:JarFile
231 ZipEntry ze = super.getEntry(name);
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipFile.java333 public ZipEntry getEntry(String name) { method in class:ZipFile
340 jzentry = getEntry(jzfile, zc.getBytes(name), true);
350 private static native long getEntry(long jzfile, byte[] name, method in class:ZipFile
384 jzentry = getEntry(jzfile, zc.getBytesUTF8(entry.name), true);
387 jzentry = getEntry(jzfile, zc.getBytes(entry.name), true);
/libcore/ojluni/src/main/java/java/security/
H A DKeyStore.java135 * ks.getEntry("privateKeyAlias", protParam);
1550 public final Entry getEntry(String alias, ProtectionParameter protParam) method in class:KeyStore
1583 * @see #getEntry(String, KeyStore.ProtectionParameter)
/libcore/ojluni/src/main/java/java/util/
H A DWeakHashMap.java417 return getEntry(key) != null;
424 Entry<K,V> getEntry(Object key) { method in class:WeakHashMap
978 Entry<K,V> candidate = getEntry(e.getKey());
H A DTreeMap.java233 return getEntry(key) != null;
279 TreeMapEntry<K,V> p = getEntry(key);
343 final TreeMapEntry<K,V> getEntry(Object key) { method in class:TreeMap
365 * Version of getEntry using comparator. Split off from getEntry
604 TreeMapEntry<K,V> p = getEntry(key);
982 TreeMapEntry<K,V> p = getEntry(key);
992 TreeMapEntry<K,V> p = getEntry(key);
1072 TreeMapEntry<K,V> p = getEntry(entry.getKey());
1081 TreeMapEntry<K,V> p = getEntry(entr
[all...]

Completed in 219 milliseconds