Searched refs:mCache (Results 26 - 41 of 41) sorted by relevance

12

/frameworks/support/volley/src/com/android/volley/
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/base/libs/hwui/
H A DLayerCache.h138 SortedList<LayerEntry> mCache; member in class:android::uirenderer::LayerCache
H A DTextureCache.h133 GenerationCache<SkBitmap*, Texture*> mCache; member in class:android::uirenderer::TextureCache
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();
H A DProgramCache.cpp432 size_t count = mCache.size();
434 delete mCache.valueAt(i);
436 mCache.clear();
441 ssize_t index = mCache.indexOfKey(key);
446 mCache.add(key, program);
448 program = mCache.valueAt(index);
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 DTextDropShadowCache.h160 GenerationCache<ShadowText, ShadowTexture*> mCache; member in class:android::uirenderer::TextDropShadowCache
/frameworks/base/core/jni/android/graphics/
H A DTextLayoutCache.cpp41 mCache(GenerationCache<TextLayoutCacheKey, sp<TextLayoutValue> >::kUnlimitedCapacity),
48 mCache.clear();
52 mCache.setOnEntryRemovedListener(this);
83 mCache.clear();
102 sp<TextLayoutValue> value = mCache.get(key);
131 bool removedOne = mCache.removeOldest();
134 "mSize = %u, size = %u, mMaxSize = %u, mCache.size() = %u",
135 mSize, size, mMaxSize, mCache.size());
142 bool putOne = mCache.put(key, value);
203 size_t cacheSize = mCache
[all...]
H A DTextLayoutCache.h279 GenerationCache<TextLayoutCacheKey, sp<TextLayoutValue> > mCache; member in class:android::TextLayoutCache
/frameworks/av/media/libstagefright/include/
H A DNuCachedSource2.h100 PageCache *mCache; member in struct:android::NuCachedSource2
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp909 if (mCache.indexOf(excludeName) != NAME_NOT_FOUND) {
919 if (mCache.indexOf(path) != NAME_NOT_FOUND) {
1272 start = mCache.indexOf(path);
1286 count = mCache.size();
1294 if (mCache[i].getFileName().length() > path.length() &&
1295 strncmp(mCache[i].getFileName().string(), path.string(), path.length()) == 0)
1297 const char* name = mCache[i].getFileName().string();
1302 AssetDir::FileInfo tmp = mCache[i];
1656 * to mCache, and anybody who tries to use it will call here if !mCacheValid,
1662 assert(mCache
[all...]
H A DResourceTypes.cpp311 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
316 : mError(NO_INIT), mOwnedData(NULL), mHeader(NULL), mCache(NULL)
382 mCache = (char16_t**)calloc(mHeader->stringCount, sizeof(char16_t**));
513 if (mHeader != NULL && mCache != NULL) {
515 if (mCache[x] != NULL) {
516 free(mCache[x]);
517 mCache[x] = NULL;
520 free(mCache);
521 mCache = NULL;
597 if (mCache[id
[all...]
/frameworks/av/media/libstagefright/
H A DMPEG4Extractor.cpp119 uint8_t *mCache; member in struct:android::MPEG4DataSource
131 mCache(NULL) {
139 if (mCache) {
140 free(mCache);
141 mCache = NULL;
157 memcpy(data, &mCache[offset - mCachedOffset], size);
177 mCache = (uint8_t *)malloc(size);
179 if (mCache == NULL) {
186 ssize_t err = mSource->readAt(mCachedOffset, mCache, mCachedSize);
/frameworks/base/include/androidfw/
H A DAssetManager.h369 SortedVector<AssetDir::FileInfo> mCache; member in class:android::AssetManager
H A DResourceTypes.h482 char16_t** mCache; member in class:android::ResStringPool

Completed in 578 milliseconds

12