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

  /frameworks/base/media/java/android/media/
CameraProfile.java 47 private static final HashMap<Integer, int[]> sCache = new HashMap<Integer, int[]>();
81 synchronized (sCache) {
82 int[] levels = sCache.get(cameraId);
85 sCache.put(cameraId, levels);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
TargetApplicationGetter.java 28 private static LruCache<String, ApplicationInfo> sCache =
33 return sCache.get(packageName);
36 sCache.remove(packageName);
59 sCache.put(packageName[0], targetAppInfo);
  /frameworks/base/core/java/android/os/
ServiceManager.java 31 private static HashMap<String, IBinder> sCache = new HashMap<String, IBinder>();
51 IBinder service = sCache.get(name);
101 IBinder service = sCache.get(name);
134 if (sCache.size() != 0) {
137 sCache.putAll(cache);