Home
last modified time | relevance | path

Searched refs:cached (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/net/www/protocol/http/
DAuthenticationInfo.java284 AuthenticationInfo cached = getAuth(key, null); in getServerAuth() local
285 if ((cached == null) && requestIsInProgress (key)) { in getServerAuth()
287 cached = getAuth(key, null); in getServerAuth()
289 return cached; in getServerAuth()
328 AuthenticationInfo cached = (AuthenticationInfo) cache.get(key, null); in getProxyAuth() local
329 if ((cached == null) && requestIsInProgress (key)) { in getProxyAuth()
331 cached = (AuthenticationInfo) cache.get(key, null); in getProxyAuth()
333 return cached; in getProxyAuth()
/libcore/ojluni/src/main/java/sun/nio/ch/
DIOVecWrapper.java82 private static final ThreadLocal<IOVecWrapper> cached = field in IOVecWrapper
96 IOVecWrapper wrapper = cached.get(); in get()
105 cached.set(wrapper); in get()
/libcore/ojluni/src/main/java/java/nio/charset/
DCharset.java499 final Map.Entry<String, Charset> cached = cache1;
500 if (cached != null && charsetName.equals(cached.getKey()))
501 return cached.getValue();
/libcore/ojluni/src/main/java/sun/security/util/
DCache.java444 Map<K,V> cached = getCachedEntries(); in accept() local
446 visitor.visit(cached); in accept()