Home
last modified time | relevance | path

Searched refs:totalAttempts (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/biometrics/
DAuthenticationStatsPersister.java126 public void persistFrrStats(int userId, int totalAttempts, int rejectedAttempts, in persistFrrStats() argument
149 frrStatsSet.add(buildFrrStats(frrStatJson, totalAttempts, rejectedAttempts, in persistFrrStats()
173 private String buildFrrStats(JSONObject frrStats, int totalAttempts, int rejectedAttempts, in buildFrrStats() argument
177 .put(FACE_ATTEMPTS, totalAttempts) in buildFrrStats()
183 .put(FINGERPRINT_ATTEMPTS, totalAttempts) in buildFrrStats()
DAuthenticationStats.java37 public AuthenticationStats(final int userId, int totalAttempts, int rejectedAttempts, in AuthenticationStats() argument
40 mTotalAttempts = totalAttempts; in AuthenticationStats()
/frameworks/native/services/surfaceflinger/CompositionEngine/src/planner/
DPredictor.cpp226 const size_t totalAttempts = hitCount + mMissCount; in dump() local
228 100.0f * hitCount / totalAttempts, hitCount, totalAttempts); in dump()
474 HashFrequency(NonBufferHash hash, size_t totalAttempts) in dumpPredictionsByFrequency()
475 : hash(hash), totalAttempts(totalAttempts) {} in dumpPredictionsByFrequency()
478 size_t totalAttempts; in dumpPredictionsByFrequency() member
490 return lhs.totalAttempts > rhs.totalAttempts; in dumpPredictionsByFrequency()
494 for (const auto& [hash, totalAttempts] : hashFrequencies) { in dumpPredictionsByFrequency()
/frameworks/native/services/surfaceflinger/CompositionEngine/include/compositionengine/impl/planner/
DPredictor.h200 const size_t totalAttempts = hitCount + missCount;
201 base::StringAppendF(&result, "%.2f%% (%zd/%zd)", 100.0f * hitCount / totalAttempts,
202 hitCount, totalAttempts);