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.java82 private final ArrayMap<String, Integer> mExceptionCounts = new ArrayMap<>(); field in BinderCallsStats
241 if (mExceptionCounts.size() >= MAX_EXCEPTION_COUNT_SIZE) { in callThrewException()
244 final Integer count = mExceptionCounts.get(className); in callThrewException()
245 mExceptionCounts.put(className, count == null ? 1 : count + 1); in callThrewException()
369 return new ArrayMap(mExceptionCounts); in getExportedExceptionStats()
456 mExceptionCounts.entrySet().iterator().forEachRemaining( in dumpLocked()
562 mExceptionCounts.clear(); in reset()
767 return mExceptionCounts; in getExceptionCounts()