Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/os/
DLooperStats.java134 entry.exceptionCount++; in dispatchingThrewException()
196 if (specialEntry.messageCount > 0 || specialEntry.exceptionCount > 0) { in maybeAddSpecialEntry()
296 public long exceptionCount; field in LooperStats.Entry
322 exceptionCount = 0; in reset()
355 public final long exceptionCount; field in LooperStats.ExportedEntry
378 this.exceptionCount = entry.exceptionCount; in ExportedEntry()
DBinderCallsStats.java204 callStat.exceptionCount += s.exceptionThrown ? 1 : 0; in processCallEnded()
306 exported.exceptionCount = stat.exceptionCount; in getExportedCallStats()
428 .append(',').append(mDetailedTracking ? e.exceptionCount : '_') in dumpLocked()
588 public long exceptionCount; field in BinderCallsStats.ExportedCallStat
622 public long exceptionCount; field in BinderCallsStats.CallStat
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DLooperStatsTest.java101 assertThat(entry.exceptionCount).isEqualTo(0); in testSingleMessageDispatched()
133 assertThat(entry.exceptionCount).isEqualTo(1); in testThrewException()
207 assertThat(entry1.exceptionCount).isEqualTo(0); in testMultipleMessagesDispatched()
222 assertThat(entry2.exceptionCount).isEqualTo(0); in testMultipleMessagesDispatched()
238 assertThat(entry3.exceptionCount).isEqualTo(0); in testMultipleMessagesDispatched()
350 assertThat(entry1.exceptionCount).isEqualTo(1); in testScreenStateCollected()
355 assertThat(entry2.exceptionCount).isEqualTo(1); in testScreenStateCollected()
392 assertThat(entry1.exceptionCount).isEqualTo(0); in testMessagesOverSizeCap()
DBinderCallsStatsTest.java529 assertEquals(0, stat.exceptionCount); in testGetExportedStatsWhenDetailedTrackingEnabled()
/frameworks/base/services/core/java/com/android/server/
DLooperStatsService.java151 entry.exceptionCount); in dump()
/frameworks/base/services/core/java/com/android/server/pm/permission/
DDefaultPermissionGrantPolicy.java1364 final int exceptionCount = mGrantExceptions.size(); in grantDefaultPermissionExceptions() local
1365 for (int i = 0; i < exceptionCount; i++) { in grantDefaultPermissionExceptions()
/frameworks/base/services/core/java/com/android/server/stats/
DStatsCompanionService.java1309 e.writeLong(callStat.exceptionCount); in pullBinderCallsStats()
1359 e.writeLong(entry.exceptionCount); in pullLooperStats()