HomeSort by relevance Sort by last modified time
    Searched refs:mContactsCache (Results 1 - 2 of 2) sorted by null

  /packages/apps/Dialer/src/com/android/dialer/dialpad/
SmartDialLoaderTask.java 55 private final SmartDialCache mContactsCache;
72 this.mContactsCache = cache;
95 final SmartDialTrie trie = mContactsCache.getContacts();
96 final boolean matchNanp = mContactsCache.getUserInNanpRegion();
SmartDialCache.java 145 private SmartDialTrie mContactsCache;
255 mContactsCache = cache;
287 // have the newest value of mContactsCache at this point because it is volatile.
288 if (mContactsCache != null) {
289 return mContactsCache;
294 // If mContactsCache is still null at this point, either there was never any caching
297 if (mContactsCache == null) {
299 return (mContactsCache == null) ? new SmartDialTrie() : mContactsCache;
301 // After waiting for the lock on mLock to be released, mContactsCache is no
    [all...]

Completed in 56 milliseconds