Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/os/
DBinderCallsStats.java98 private final ArrayMap<String, Integer> mExceptionCounts = new ArrayMap<>(); field in BinderCallsStats
392 if (mExceptionCounts.size() >= MAX_EXCEPTION_COUNT_SIZE) { in callThrewException()
395 final Integer count = mExceptionCounts.get(className); in callThrewException()
396 mExceptionCounts.put(className, count == null ? 1 : count + 1); in callThrewException()
590 return new ArrayMap(mExceptionCounts); in getExportedExceptionStats()
701 mExceptionCounts.entrySet().iterator().forEachRemaining( in dumpLocked()
874 mExceptionCounts.clear(); in reset()
1121 return mExceptionCounts; in getExceptionCounts()