Searched refs:hitCount (Results 1 – 11 of 11) sorted by relevance
/frameworks/base/core/java/android/util/ |
D | LruCache.java | 77 private int hitCount; field in LruCache 124 hitCount++; in get() 348 public synchronized final int hitCount() { in hitCount() method in LruCache 349 return hitCount; in hitCount() 390 int accesses = hitCount + missCount; in toString() 391 int hitPercent = accesses != 0 ? (100 * hitCount / accesses) : 0; in toString() 393 maxSize, hitCount, missCount, hitPercent); in toString()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/ |
D | Predictor.h | 181 return getStatsForType(type).hitCount; 191 void recordHit(Type type) { ++getStatsForType(type).hitCount; } 200 const size_t totalAttempts = hitCount + missCount; 201 base::StringAppendF(&result, "%.2f%% (%zd/%zd)", 100.0f * hitCount / totalAttempts, 202 hitCount, totalAttempts); 205 size_t hitCount = 0;
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/ |
D | Predictor.cpp | 225 const size_t hitCount = mExactHitCount + mApproximateHitCount; in dump() local 226 const size_t totalAttempts = hitCount + mMissCount; in dump() 228 100.0f * hitCount / totalAttempts, hitCount, totalAttempts); in dump()
|
/frameworks/base/core/tests/coretests/src/android/util/ |
D | LruCacheTest.java | 525 assertEquals("hit count", expectedHitCount, cache.hitCount());
|
/frameworks/base/core/java/android/database/sqlite/ |
D | SQLiteConnection.java | 1435 mPreparedStatementCache.hitCount(), mPreparedStatementCache.missCount(), in getMainDbStatsUnsafe()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/frameworks/base/boot/ |
D | boot-image-profile.txt | 15567 HSPLandroid/util/LruCache;->hitCount()I
|
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 31619 method public final synchronized int hitCount();
|
/frameworks/base/config/ |
D | boot-image-profile.txt | 15631 HSPLandroid/util/LruCache;->hitCount()I
|
/frameworks/base/core/api/ |
D | current.txt | 50093 method public final int hitCount();
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 57316 Landroid/util/LruCache;->hitCount:I
|