Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/java/net/
DAddressCache.java40 private final BasicLruCache<AddressCacheKey, AddressCacheEntry> cache
41 = new BasicLruCache<AddressCacheKey, AddressCacheEntry>(MAX_ENTRIES);
71 static class AddressCacheEntry { class in AddressCache
84 AddressCacheEntry(Object value) { in AddressCacheEntry() method in AddressCache.AddressCacheEntry
103 AddressCacheEntry entry = cache.get(new AddressCacheKey(hostname, netId)); in get()
118 cache.put(new AddressCacheKey(hostname, netId), new AddressCacheEntry(addresses)); in put()
126 cache.put(new AddressCacheKey(hostname, netId), new AddressCacheEntry(detailMessage)); in putUnknownHost()