Home
last modified time | relevance | path

Searched refs:cache_entry (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java121 int cache_entry = newPosition % ROWCACHESIZE; in onMove() local
123 if (mRowNumCache[cache_entry] == newPosition) { in onMove()
124 int which = mCursorCache[cache_entry]; in onMove()
130 mCursor.moveToPosition(mCurRowNumCache[cache_entry][which]); in onMove()
131 mLastCacheHit = cache_entry; in onMove()
177 mRowNumCache[cache_entry] = newPosition; in onMove()
178 mCursorCache[cache_entry] = smallestIdx; in onMove()
181 mCurRowNumCache[cache_entry][i] = mCursors[i].getPosition(); in onMove()
/aosp12/system/unwinding/libunwindstack/
H A DDexFile.cpp65 std::weak_ptr<DexFileApi>& cache_entry = g_mapped_dex_files[cache_key]; in CreateFromDisk() local
66 std::shared_ptr<DexFileApi> dex_api = cache_entry.lock(); in CreateFromDisk()
82 cache_entry = dex_api; in CreateFromDisk()