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.java42 private final BasicLruCache<AddressCacheKey, AddressCacheEntry> cache
43 = new BasicLruCache<AddressCacheKey, AddressCacheEntry>(MAX_ENTRIES);
74 static class AddressCacheEntry { class in AddressCache
90 AddressCacheEntry(Object value) { in AddressCacheEntry() method in AddressCache.AddressCacheEntry
109 AddressCacheEntry entry = cache.get(new AddressCacheKey(hostname, netId)); in get()
124 cache.put(new AddressCacheKey(hostname, netId), new AddressCacheEntry(addresses)); in put()
132 cache.put(new AddressCacheKey(hostname, netId), new AddressCacheEntry(detailMessage)); in putUnknownHost()