Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DTargetPackageInfoGetterTask.java30 private static final LruCache<String, PackageInfo> sCache = new LruCache<>(MAX_CACHE_ENTRIES); field in TargetPackageInfoGetterTask
34 return sCache.get(packageName); in getCachedPackageInfo()
38 sCache.remove(packageName); in removeCachedPackageInfo()
56 sCache.put(packageName[0], packageInfo); in doInBackground()
/packages/apps/Email/provider_src/com/android/email/mail/internet/
DAuthenticationCache.java20 private static AuthenticationCache sCache; field in AuthenticationCache
48 if (sCache == null) { in getInstance()
49 sCache = new AuthenticationCache(); in getInstance()
51 return sCache; in getInstance()
/packages/apps/Dialer/java/com/android/incallui/
DContactInfoCache.java80 private static ContactInfoCache sCache = null; field in ContactInfoCache
131 if (sCache == null) { in getInstance()
132 sCache = new ContactInfoCache(mContext.getApplicationContext()); in getInstance()
134 return sCache; in getInstance()