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

/packages/apps/Dialer/src/com/android/dialer/util/
H A DExpirableCache.java43 * CachedValue<Contact> cachedContact = mContactCache.getCachedValue(phoneNumber);
96 public interface CachedValue<V> { interface in class:ExpirableCache
112 private static class GenerationalCachedValue<V> implements ExpirableCache.CachedValue<V> {
143 private LruCache<K, CachedValue<V>> mCache;
151 * @see ExpirableCache.CachedValue#isExpired()
155 private ExpirableCache(LruCache<K, CachedValue<V>> cache) {
173 public CachedValue<V> getCachedValue(K key) {
183 * within the {@link CachedValue} and not call {@link #getPossiblyExpired(Object)} to get the
190 CachedValue<V> cachedValue = getCachedValue(key);
205 CachedValue<
[all...]

Completed in 69 milliseconds