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

/libcore/ojluni/src/main/java/sun/security/util/
H A DManifestEntryVerifier.java181 public JarEntry getEntry() method in class:ManifestEntryVerifier
/libcore/ojluni/src/main/java/sun/net/www/protocol/jar/
H A DURLJarFile.java107 public ZipEntry getEntry(String name) { method in class:URLJarFile
108 ZipEntry ze = super.getEntry(name);
/libcore/ojluni/src/main/java/java/lang/
H A DThreadLocal.java146 ThreadLocalMap.Entry e = map.getEntry(this);
375 private Entry getEntry(ThreadLocal key) { method in class:ThreadLocal.ThreadLocalMap
385 * Version of getEntry method for use when key is not found in
/libcore/ojluni/src/main/java/java/util/jar/
H A DJarFile.java217 return (JarEntry)getEntry(name);
233 public ZipEntry getEntry(String name) { method in class:JarFile
234 ZipEntry ze = super.getEntry(name);
/libcore/ojluni/src/main/java/java/security/
H A DKeyStore.java139 * ks.getEntry("privateKeyAlias", protParam);
1313 public final Entry getEntry(String alias, ProtectionParameter protParam) method in class:KeyStore
1346 * @see #getEntry(String, KeyStore.ProtectionParameter)
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipFile.java309 public ZipEntry getEntry(String name) { method in class:ZipFile
316 jzentry = getEntry(jzfile, zc.getBytes(name), true);
326 private static native long getEntry(long jzfile, byte[] name, method in class:ZipFile
359 jzentry = getEntry(jzfile, zc.getBytesUTF8(entry.name), true);
361 jzentry = getEntry(jzfile, zc.getBytes(entry.name), true);
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DX509KeyManagerImpl.java104 PrivateKeyEntry entry = getEntry(alias);
110 PrivateKeyEntry entry = getEntry(alias);
217 private PrivateKeyEntry getEntry(String alias) { method in class:X509KeyManagerImpl
243 Entry newEntry = ks.getEntry
/libcore/ojluni/src/main/java/java/util/
H A DWeakHashMap.java399 return getEntry(key) != null;
406 Entry<K,V> getEntry(Object key) { method in class:WeakHashMap
953 Entry<K,V> candidate = getEntry(e.getKey());
H A DHashMap.java348 Entry<K,V> entry = getEntry(key);
380 return getEntry(key) != null;
388 final Entry<K,V> getEntry(Object key) { method in class:HashMap
1315 Entry<K,V> candidate = getEntry(e.getKey());
1477 if ((e = (HashMapEntry)getEntry(key)) != null &&
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
628 TreeMapEntry<K,V> p = getEntry(key);
1002 TreeMapEntry<K,V> p = getEntry(key);
1012 TreeMapEntry<K,V> p = getEntry(key);
1092 TreeMapEntry<K,V> p = getEntry(entry.getKey());
1101 TreeMapEntry<K,V> p = getEntry(entr
[all...]

Completed in 341 milliseconds