HomeSort by relevance Sort by last modified time
    Searched defs:cache (Results 176 - 200 of 1400) sorted by null

1 2 3 4 5 6 78 91011>>

  /frameworks/base/core/java/android/app/
SystemServiceRegistry.java 834 final Object[] cache = ctx.mServiceCache; local
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteDebug.java 97 /** the number of bytes of page cache allocation which could not be sattisfied by the
101 * that overflowed because no space was left in the page cache.
133 /** statement cache stats: hits/misses/cachesize */
134 public String cache; field in class:SQLiteDebug.DbStats
142 this.cache = hits + "/" + misses + "/" + cachesize;
  /frameworks/minikin/libs/minikin/
HbFontCache.cpp 82 static HbFontCache* cache = nullptr; local
83 if (cache == nullptr) {
84 cache = new HbFontCache();
86 return cache;
  /hardware/qcom/display/msmcobalt/sdm/include/core/
buffer_allocator.h 54 bool cache = false; //!< Specifies whether the buffer needs to be cache. member in struct:sdm::BufferConfig
  /libcore/ojluni/src/main/java/sun/nio/cs/
ThreadLocalCoders.java 41 private static abstract class Cache {
44 private ThreadLocal cache = new ThreadLocal(); field in class:ThreadLocalCoders.Cache
47 Cache(int size) {
63 Object[] oa = (Object[])cache.get();
66 cache.set(oa);
89 private static Cache decoderCache = new Cache(CACHE_SIZE) {
113 private static Cache encoderCache = new Cache(CACHE_SIZE) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
Buffer.java 24 import com.android.gallery3d.filtershow.cache.BitmapCache;
37 BitmapCache cache = MasterImage.getImage().getBitmapCache(); local
38 mBitmap = cache.getBitmapCopy(bitmap, BitmapCache.PREVIEW_CACHE);
91 BitmapCache cache = MasterImage.getImage().getBitmapCache(); local
92 if (cache.cache(mBitmap)) {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
CacheManager.java 31 private static final String KEY_CACHE_UP_TO_DATE = "cache-up-to-date";
46 BlobCache cache = sCacheMap.get(filename); local
47 if (cache == null) {
51 cache = new BlobCache(path, maxEntries, maxBytes, false,
53 sCacheMap.put(filename, cache);
55 Log.e(TAG, "Cannot instantiate cache!", e);
58 return cache;
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-15/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-16/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-17/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-18/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-19/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-3/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-4/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-5/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-8/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /prebuilts/ndk/current/platforms/android-9/arch-arm/usr/include/asm/
procinfo.h 35 struct cpu_cache_fns *cache; member in struct:proc_info_list
  /system/core/libpixelflinger/codeflinger/
CodeCache.cpp 50 // A dlmalloc mspace is used to manage the code cache over a mmaped region.
84 int fd = ashmem_create_region("CodeFlinger code cache",
87 "Creating code cache, ashmem_create_region "
93 "Creating code cache, mmap failed with error "
145 "Failed to resize Assembly to %zd in code cache "
178 int CodeCache::cache( const AssemblyKeyBase& keyBase, function in class:android::CodeCache
  /external/guava/guava-tests/test/com/google/common/cache/
CacheExpirationTest.java 15 package com.google.common.cache;
17 import static com.google.common.cache.TestingCacheLoaders.identityLoader;
18 import static com.google.common.cache.TestingRemovalListeners.countingRemovalListener;
23 import com.google.common.cache.TestingCacheLoaders.IdentityLoader;
24 import com.google.common.cache.TestingRemovalListeners.CountingRemovalListener;
37 * Tests relating to cache expiration: make sure entries expire at the right times, make sure
53 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
58 checkExpiration(cache, loader, ticker, removalListener);
65 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
70 checkExpiration(cache, loader, ticker, removalListener)
102 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
114 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
195 LoadingCache<Integer, AtomicInteger> cache = CacheBuilder.newBuilder() local
216 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
228 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
240 LoadingCache<String, Integer> cache = CacheBuilder.newBuilder() local
253 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
305 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
352 LoadingCache<Integer, Integer> cache = CacheBuilder.newBuilder() local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
ListFormatter.java 164 return cache.get(locale, style.getName());
298 private static class Cache {
299 private final ICUCache<String, ListFormatter> cache = field in class:ListFormatter.Cache
304 ListFormatter result = cache.get(key);
307 cache.put(key, result);
325 static Cache cache = new Cache(); field in class:ListFormatter
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ListFormatter.java 165 return cache.get(locale, style.getName());
303 private static class Cache {
304 private final ICUCache<String, ListFormatter> cache = field in class:ListFormatter.Cache
309 ListFormatter result = cache.get(key);
312 cache.put(key, result);
330 static Cache cache = new Cache(); field in class:ListFormatter
  /external/javassist/src/main/javassist/
CtNewWrappedMethod.java 156 CtMember.Cache cache = clazz.hasMemberCache(); local
157 if (cache != null)
158 cache.addMethod(new CtMethod(body, clazz));

Completed in 1424 milliseconds

1 2 3 4 5 6 78 91011>>