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

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

Completed in 140 milliseconds