HomeSort by relevance Sort by last modified time
    Searched refs:mCache (Results 76 - 100 of 259) sorted by null

1 2 34 5 6 7 8 91011

  /frameworks/opt/bitmap/src/com/android/bitmap/
DecodeTask.java 55 private final BitmapCache mCache;
104 mCache = cache;
144 mInBitmap = mCache.poll();
190 mCache.offer(mInBitmap);
261 + mCache.toDebugString());
377 mCache.offer(mInBitmap);
446 mCache.put(mKey, result);
459 mCache.offer(mInBitmap);
  /packages/apps/Gallery/src/com/android/camera/
ViewImage.java 131 private BitmapCache mCache;
447 mCache.clear(); // Because the position number is changed.
486 Bitmap b = mCache.getBitmap(pos);
499 return !mCache.hasBitmap(pos + offset);
532 mCache.put(pos + offset, bitmap.getBitmap());
571 mCache = new BitmapCache(3);
572 mImageView.setRecycler(mCache);
596 v.setRecycler(mCache);
    [all...]
GridViewSpecial.java 720 // mCache maps from row number to the ImageBlock.
721 private final HashMap<Integer, ImageBlock> mCache;
761 mCache = new HashMap<Integer, ImageBlock>();
796 ImageBlock blk = mCache.get(row);
836 ImageBlock blk = mCache.get(row);
842 mCache.put(row, blk);
850 if (mCache.size() < CACHE_ROWS) {
856 for (int index : mCache.keySet()) {
859 if (mCache.get(index).hasPendingRequests()) {
876 return mCache.remove(bestIndex)
    [all...]
  /frameworks/av/media/libstagefright/include/
CallbackDataSource.h 85 uint8_t mCache[kCacheSize];
  /frameworks/base/libs/hwui/
RenderBufferCache.h 112 std::multiset<RenderBufferEntry> mCache;
ResourceCache.h 97 KeyedVector<const void*, ResourceReference*>* mCache;
TextureCache.h 128 LruCache<uint32_t, Texture*> mCache;
TessellationCache.cpp 294 , mCache(LruCache<Description, Buffer*>::kUnlimitedCapacity)
296 mCache.setOnEntryRemovedListener(&mBufferRemovedListener);
302 mCache.clear();
310 LruCache<Description, Buffer*>::Iterator iter(mCache);
330 size -= mCache.peekOldestValue()->getSize();
331 mCache.removeOldest();
337 mCache.clear();
393 Buffer* buffer = mCache.get(entry);
403 mCache.put(entry, buffer);
PathCache.h 248 return mCache.get(entry);
273 LruCache<PathDescription, PathTexture*> mCache;
  /frameworks/native/services/surfaceflinger/RenderEngine/
ProgramCache.cpp 106 Program* program = mCache.valueFor(shaderKey);
109 mCache.add(shaderKey, program);
279 Program* program = mCache.valueFor(needs);
284 mCache.add(needs, program);
288 // needs.mNeeds, uint32_t(ns2ms(time)), mCache.size());
ProgramCache.h 135 DefaultKeyedVector<Key, Program*> mCache;
  /packages/apps/UnifiedEmail/src/com/android/mail/bitmap/
AbstractAvatarDrawable.java 48 private BitmapCache mCache;
82 mCache = cache;
192 if (mCache != null) {
193 cached = mCache.get(contactRequest, true /* incrementRefCount */);
  /external/volley/src/main/java/com/android/volley/toolbox/
ImageLoader.java 50 private final ImageCache mCache;
86 mCache = imageCache;
169 return mCache.getBitmap(cacheKey) != null;
216 Bitmap cachedBitmap = mCache.getBitmap(cacheKey);
281 mCache.putBitmap(cacheKey, response);
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
BasicBitmapDrawable.java 67 private final BitmapCache mCache;
99 mCache = cache;
244 final ReusableBitmap cached = mCache.get(key, true /* incrementRefCount */);
254 "CACHE MISS key=%s\ncache=%s", mCurrKey, mCache.toDebugString()));
334 mTask = new DecodeTask(mCurrKey, opts, factory, this, mCache);
  /frameworks/base/services/core/java/com/android/server/om/
OverlayManagerService.java     [all...]
OverlayManagerSettings.java 418 private OverlayInfo mCache;
432 mCache = null;
492 if (mCache == null) {
493 mCache = new OverlayInfo(mPackageName, mTargetPackageName, mBaseCodePath, mState,
496 return mCache;
500 mCache = null;
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/model/
PermissionApps.java 49 private final PmCache mCache;
65 mCache = cache;
171 List<PackageInfo> apps = mCache != null ? mCache.getPackages(user.getIdentifier())
  /system/tools/hidl/
Coordinator.h 121 mutable std::map<FQName, AST *> mCache;
  /packages/apps/Launcher3/src/com/android/launcher3/
IconCache.java 96 private final HashMap<ComponentKey, CacheEntry> mCache =
191 mCache.remove(new ComponentKey(componentName, user));
199 for (ComponentKey key: mCache.keySet()) {
206 mCache.remove(condemned);
360 entry = mCache.get(key);
373 mCache.put(key, entry);
511 CacheEntry entry = mCache.get(cacheKey);
514 mCache.put(cacheKey, entry);
576 CacheEntry entry = mCache.get(cacheKey);
589 mCache.put(cacheKey, entry)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/compat/
PackageInstallerCompatVL.java 48 private final IconCache mCache;
56 mCache = LauncherAppState.getInstance(context).getIconCache();
78 mCache.cachePackageInstallInfo(packageName, user, info.getAppIcon(),
  /packages/apps/Settings/src/com/android/settings/dashboard/suggestions/
SuggestionAdapter.java 44 private final IconCache mCache;
52 mCache = new IconCache(context);
83 holder.icon.setImageDrawable(mCache.getIcon(suggestion.icon));
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
SyncMessageBatch.java 58 private final ThreadInfoCache mCache;
74 mCache = cache;
150 final String conversationId = mCache.getOrCreateConversation(db, sms.mThreadId, sms.mSubId,
245 final String conversationId = mCache.getOrCreateConversation(db, mms.mThreadId, mms.mSubId,
345 final boolean archived = mCache.isArchived(conversationId);
  /frameworks/av/include/media/
Interpolator.h 54 : mCache(cache)
175 if (mCache) {
328 bool mCache; // whether we cache spline coefficient computation
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSyncAdapter.java 54 private CalendarColorCache mCache;
90 mCache = new CalendarColorCache(context, this);
217 return mCache.hasColors(mData[position].accountName, mData[position].accountType);
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountTypeProvider.java 57 private final ConcurrentMap<String, List<AccountType>> mCache = new ConcurrentHashMap<>();
95 List<AccountType> types = mCache.get(accountType);
98 mCache.put(accountType, types);

Completed in 676 milliseconds

1 2 34 5 6 7 8 91011