Searched defs:mCache (Results 1 - 25 of 27) sorted by relevance

12

/frameworks/base/libs/hwui/
H A DFboCache.h72 SortedVector<GLuint> mCache; member in class:android::uirenderer::FboCache
H A DProgramCache.h70 KeyedVector<programid, Program*> mCache; member in class:android::uirenderer::ProgramCache
H A DTextureCache.h133 GenerationCache<SkBitmap*, Texture*> mCache; member in class:android::uirenderer::TextureCache
H A DLayerCache.h138 SortedList<LayerEntry> mCache; member in class:android::uirenderer::LayerCache
H A DResourceCache.h123 KeyedVector<void*, ResourceReference*>* mCache; member in class:android::uirenderer::ResourceCache
H A DGradientCache.h153 GenerationCache<GradientCacheEntry, Texture*> mCache; member in class:android::uirenderer::GradientCache
H A DPatchCache.h57 return mCache.size();
115 KeyedVector<PatchDescription, Patch*> mCache; member in class:android::uirenderer::PatchCache
H A DTextDropShadowCache.h160 GenerationCache<ShadowText, ShadowTexture*> mCache; member in class:android::uirenderer::TextDropShadowCache
H A DShapeCache.h354 return mCache.get(entry);
359 GenerationCache<Entry, PathTexture*> mCache; member in class:android::uirenderer::ShapeCache
418 mCache(GenerationCache<ShapeCacheEntry, PathTexture*>::kUnlimitedCapacity),
438 mCache.clear();
444 mCache.setOnEntryRemovedListener(this);
471 mCache.removeOldest();
528 mCache.removeOldest();
603 mCache.put(entry, texture);
611 mCache.clear();
/frameworks/native/include/binder/
H A DPermissionCache.h55 SortedVector< Entry > mCache; member in class:android::PermissionCache
/frameworks/native/opengl/tests/EGLTest/
H A Degl_cache_test.cpp32 mCache = egl_cache_t::get();
36 mCache->setCacheFilename("");
37 mCache->terminate();
40 egl_cache_t* mCache; member in class:android::EGLCacheTest
45 mCache->setBlob("abcd", 4, "efgh", 4);
46 ASSERT_EQ(0, mCache->getBlob("abcd", 4, buf, 4));
55 mCache->initialize(egl_display_t::get(EGL_DEFAULT_DISPLAY));
56 mCache->setBlob("abcd", 4, "efgh", 4);
57 ASSERT_EQ(4, mCache->getBlob("abcd", 4, buf, 4));
66 mCache
[all...]
/frameworks/support/volley/src/com/android/volley/
H A DCacheDispatcher.java44 private final Cache mCache; field in class:CacheDispatcher
66 mCache = cache;
85 mCache.initialize();
101 Cache.Entry entry = mCache.get(request.getCacheKey());
H A DNetworkDispatcher.java38 private final Cache mCache; field in class:NetworkDispatcher
58 mCache = cache;
115 mCache.put(request.getCacheKey(), response.cacheEntry);
H A DRequestQueue.java76 private final Cache mCache; field in class:RequestQueue
100 mCache = cache;
134 mCacheDispatcher = new CacheDispatcher(mCacheQueue, mNetworkQueue, mCache, mDelivery);
140 mCache, mDelivery);
/frameworks/support/volley/src/com/android/volley/toolbox/
H A DClearCacheRequest.java31 private final Cache mCache; field in class:ClearCacheRequest
42 mCache = cache;
49 mCache.clear();
/frameworks/support/volley/tests/src/com/android/volley/
H A DCacheDispatcherTest.java35 private MockCache mCache; field in class:CacheDispatcherTest
47 mCache = new MockCache();
52 mDispatcher = new CacheDispatcher(mCacheQueue, mNetworkQueue, mCache, mDelivery);
68 assertFalse(mCache.getCalled);
85 mCache.setEntryToReturn(entry);
95 mCache.setEntryToReturn(entry);
108 mCache.setEntryToReturn(entry);
H A DNetworkDispatcherTest.java37 private MockCache mCache; field in class:NetworkDispatcherTest
50 mCache = new MockCache();
52 mDispatcher = new NetworkDispatcher(mNetworkQueue, mNetwork, mCache, mDelivery);
88 assertFalse(mCache.putCalled);
97 assertTrue(mCache.putCalled);
98 assertNotNull(mCache.entryPut);
99 assertTrue(Arrays.equals(mCache.entryPut.data, CANNED_DATA));
100 assertEquals("bananaphone", mCache.keyPut);
/frameworks/av/media/libstagefright/include/
H A DNuCachedSource2.h100 PageCache *mCache; member in struct:android::NuCachedSource2
/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsicLUT.java32 private final byte mCache[] = new byte[1024]; field in class:ScriptIntrinsicLUT
39 mCache[ct] = (byte)ct;
40 mCache[ct + 256] = (byte)ct;
41 mCache[ct + 512] = (byte)ct;
42 mCache[ct + 768] = (byte)ct;
81 mCache[index] = (byte)value;
93 mCache[index+256] = (byte)value;
105 mCache[index+512] = (byte)value;
117 mCache[index+768] = (byte)value;
132 mTables.copyFromUnchecked(mCache);
[all...]
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicLUT.java30 private final byte mCache[] = new byte[1024]; field in class:ScriptIntrinsicLUT
37 mCache[ct] = (byte)ct;
38 mCache[ct + 256] = (byte)ct;
39 mCache[ct + 512] = (byte)ct;
40 mCache[ct + 768] = (byte)ct;
79 mCache[index] = (byte)value;
91 mCache[index+256] = (byte)value;
103 mCache[index+512] = (byte)value;
115 mCache[index+768] = (byte)value;
130 mTables.copyFromUnchecked(mCache);
[all...]
/frameworks/base/include/androidfw/
H A DAssetManager.h369 SortedVector<AssetDir::FileInfo> mCache; member in class:android::AssetManager
/frameworks/base/core/java/android/emoji/
H A DEmojiFactory.java60 private Map<Integer, WeakReference<Bitmap>> mCache; field in class:EmojiFactory
74 mCache = new CustomLinkedHashMap<Integer, WeakReference<Bitmap>>();
102 WeakReference<Bitmap> cache = mCache.get(pua);
109 mCache.put(pua, new WeakReference<Bitmap>(ret));
116 mCache.put(pua, new WeakReference<Bitmap>(ret));
/frameworks/native/include/utils/
H A DGenerationCache.h81 KeyedVector<K, sp<Entry<K, V> > > mCache; member in class:android::GenerationCache
107 return mCache.size();
122 for (uint32_t i = 0; i < mCache.size(); i++) {
123 sp<Entry<K, V> > entry = mCache.valueAt(i);
129 mCache.clear();
136 return mCache.indexOfKey(key) >= 0;
141 return mCache.keyAt(index);
146 return mCache.valueAt(index)->value;
151 ssize_t index = mCache.indexOfKey(key);
153 const sp<Entry<K, V> >& entry = mCache
[all...]
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.h279 GenerationCache<TextLayoutCacheKey, sp<TextLayoutValue> > mCache; member in class:android::TextLayoutCache
/frameworks/base/core/java/android/widget/
H A DRemoteViewsAdapter.java76 private FixedSizeRemoteViewsCache mCache; field in class:RemoteViewsAdapter
237 synchronized (adapter.mCache) {
238 adapter.mCache.commitTemporaryMetaData();
862 mCache = sCachedRemoteViewsCaches.get(key);
863 synchronized (mCache.mMetaData) {
864 if (mCache.mMetaData.count > 0) {
871 mCache = new FixedSizeRemoteViewsCache(sDefaultCacheSize);
911 synchronized (mCache.mMetaData) {
912 metaDataCount = mCache.mMetaData.count;
914 synchronized (mCache) {
[all...]

Completed in 6643 milliseconds

12