Searched defs:mCursorCache (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java36 private int mCursorCache[] = new int[ROWCACHESIZE]; field in class:SortCursor
120 int which = mCursorCache[cache_entry];
174 mCursorCache[cache_entry] = smallestIdx;
/frameworks/support/content/src/android/support/content/
H A DContentPager.java203 private final @GuardedBy("mContentLock") CursorCache mCursorCache; field in class:ContentPager
252 mCursorCache = new CursorCache(cursorCacheSize);
306 mCursorCache.evictAll();
327 if (mCursorCache.hasEntry(query.getUri())) {
353 mCursorCache.put(query.getUri(), cursor);
361 Cursor unpaged = mCursorCache.get(query.getUri());

Completed in 113 milliseconds