HomeSort by relevance Sort by last modified time
    Searched full:scache (Results 1 - 25 of 50) sorted by null

1 2

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
TargetPackageInfoGetterTask.java 28 private static final LruCache<String, PackageInfo> sCache =
33 return sCache.get(packageName);
37 sCache.remove(packageName);
59 sCache.put(packageName[0], packageInfo);
  /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);
  /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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/pulse/
scache.h 4 /* $Id: scache.h 1426 2007-02-13 15:35:19Z ossman $ */
34 /** \page scache Sample Cache
pulseaudio.h 35 #include <pulse/scache.h>
53 * \ref scache.h, \ref version.h, \ref error.h, \ref channelmap.h,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
scache.h 4 /* $Id: scache.h 1426 2007-02-13 15:35:19Z ossman $ */
34 /** \page scache Sample Cache
pulseaudio.h 35 #include <pulse/scache.h>
53 * \ref scache.h, \ref version.h, \ref error.h, \ref channelmap.h,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/pulse/
scache.h 4 /* $Id: scache.h 1426 2007-02-13 15:35:19Z ossman $ */
34 /** \page scache Sample Cache
pulseaudio.h 35 #include <pulse/scache.h>
53 * \ref scache.h, \ref version.h, \ref error.h, \ref channelmap.h,
  /frameworks/base/core/java/com/android/internal/util/
ArrayUtils.java 33 private static Object[] sCache = new Object[CACHE_SIZE];
111 Object cache = sCache[bucket];
115 sCache[bucket] = cache;
  /bionic/libc/kernel/arch-mips/asm/
cpu-info.h 55 struct cache_desc scache; member in struct:cpuinfo_mips
cpu-features.h 202 #define cpu_scache_line_size() cpu_data[0].scache.linesz
  /development/ndk/platforms/android-9/arch-mips/include/asm/
cpu-info.h 55 struct cache_desc scache; member in struct:cpuinfo_mips
cpu-features.h 202 #define cpu_scache_line_size() cpu_data[0].scache.linesz
  /external/kernel-headers/original/asm-mips/
cpu-info.h 55 struct cache_desc scache; /* Secondary cache */ member in struct:cpuinfo_mips
cpu-features.h 216 #define cpu_scache_line_size() cpu_data[0].scache.linesz
  /frameworks/base/core/java/android/content/res/
ColorStateList.java 69 private static final SparseArray<WeakReference<ColorStateList>> sCache =
98 synchronized (sCache) {
99 WeakReference<ColorStateList> ref = sCache.get(color);
107 sCache.put(color, new WeakReference<ColorStateList>(csl));
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
cpu-info.h 55 struct cache_desc scache; member in struct:cpuinfo_mips
cpu-features.h 202 #define cpu_scache_line_size() cpu_data[0].scache.linesz
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
cpu-info.h 55 struct cache_desc scache; member in struct:cpuinfo_mips
cpu-features.h 202 #define cpu_scache_line_size() cpu_data[0].scache.linesz
  /frameworks/native/opengl/libs/EGL/
egl_cache.h 122 // sCache is the singleton egl_cache_t object.
123 static egl_cache_t sCache;
egl_cache.cpp 83 egl_cache_t egl_cache_t::sCache;
86 return &sCache;
  /frameworks/support/v4/java/android/support/v4/content/
FileProvider.java 91 // @GuardedBy("sCache")
92 private static HashMap<String, PathStrategy> sCache = new HashMap<String, PathStrategy>();
213 synchronized (sCache) {
214 strat = sCache.get(authority);
225 sCache.put(authority, strat);
  /external/oprofile/events/mips/r12000/
events 31 event:0x1b counters:0,1,2,3 um:zero minimum:500 name:SCACHE_WAY_MISPREDICTION : Misprediction from scache way prediction table (data)

Completed in 6703 milliseconds

1 2