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

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

Completed in 52 milliseconds