Home
last modified time | relevance | path

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

/packages/apps/Email/src/com/android/email/provider/
DContentCache.java178 /*package*/ static class TokenList extends ArrayList<CacheToken> {
190 ArrayList<CacheToken> removeList = new ArrayList<CacheToken>(); in invalidateTokens()
192 for (CacheToken token: this) { in invalidateTokens()
199 for (CacheToken token: removeList) { in invalidateTokens()
209 for (CacheToken token: this) { in invalidate()
215 /*package*/ boolean remove(CacheToken token) { in remove()
227 public CacheToken add(String id) { in add()
228 CacheToken token = new CacheToken(id); in add()
242 public static final class CacheToken { class in ContentCache
246 /*package*/ CacheToken(String id) { in CacheToken() method in ContentCache.CacheToken
[all …]
DEmailProvider.java40 import com.android.email.provider.ContentCache.CacheToken;
1198 CacheToken token = null; in query()
/packages/apps/Email/tests/src/com/android/email/provider/
DContentCacheTests.java19 import com.android.email.provider.ContentCache.CacheToken;
92 CacheToken token1a = list.add("1"); in testTokenList()
96 CacheToken token1b = list.add("1"); in testTokenList()
103 CacheToken token2 = list.add("2"); in testTokenList()
118 CacheToken token3a = list.add("3"); in testTokenList()
119 CacheToken token3b = list.add("3"); in testTokenList()
120 CacheToken token3c = list.add("3"); in testTokenList()
210 CacheToken token = cache.getCacheToken("1"); in testContentCacheRemoveEldestEntry()