Home
last modified time | relevance | path

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

/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/file/
DFileTreeWalker.java209 BasicFileAttributes cached = ((BasicFileAttributesHolder)file).get(); in getAttributes() local
210 if (cached != null && (!followLinks || !cached.isSymbolicLink())) { in getAttributes()
211 return cached; in getAttributes()
/libcore/ojluni/src/main/java/java/nio/charset/
DCharset.java494 final Map.Entry<String, Charset> cached = cache1;
495 if (cached != null && charsetName.equals(cached.getKey()))
496 return cached.getValue();