Home
last modified time | relevance | path

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

/packages/apps/Dialer/tests/src/com/android/dialer/util/
DExpirableCacheTest.java50 assertEquals(1, mCache.getPossiblyExpired("a").intValue()); in testPut()
51 assertEquals(2, mCache.getPossiblyExpired("b").intValue()); in testPut()
53 assertEquals(3, mCache.getPossiblyExpired("a").intValue()); in testPut()
57 assertNull(mCache.getPossiblyExpired("a")); in testGet_NotExisting()
59 assertNull(mCache.getPossiblyExpired("a")); in testGet_NotExisting()
64 assertEquals(1, mCache.getPossiblyExpired("a").intValue()); in testGet_Expired()
66 assertEquals(1, mCache.getPossiblyExpired("a").intValue()); in testGet_Expired()
/packages/apps/Dialer/src/com/android/dialer/util/
DExpirableCache.java189 public V getPossiblyExpired(K key) { in getPossiblyExpired() method in ExpirableCache
/packages/apps/Dialer/src/com/android/dialer/calllog/
DCallLogAdapter.java505 ContactInfo existingInfo = mContactInfoCache.getPossiblyExpired(numberCountryIso); in queryContactInfo()
1347 ContactInfo ci = mContactInfoCache.getPossiblyExpired(numberCountryIso); in getBetterNumberFromContacts()