Home
last modified time | relevance | path

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

/frameworks/base/core/java/com/android/internal/os/
DBinderCallsStats.java167 final boolean screenInteractive = mTrackScreenInteractive in processCallEnded()
189 screenInteractive, in processCallEnded()
215 screenInteractive); in processCallEnded()
297 exported.screenInteractive = stat.screenInteractive; in getExportedCallStats()
423 .append(',').append(e.screenInteractive) in dumpLocked()
579 public boolean screenInteractive; field in BinderCallsStats.ExportedCallStat
602 public final boolean screenInteractive; field in BinderCallsStats.CallStat
625 boolean screenInteractive) { in CallStat() argument
629 this.screenInteractive = screenInteractive; in CallStat()
638 private boolean screenInteractive; field in BinderCallsStats.CallStatKey
[all …]
DCachedDeviceState.java51 public void setScreenInteractive(boolean screenInteractive) { in setScreenInteractive() argument
52 mScreenInteractive = screenInteractive; in setScreenInteractive()
/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBinderCallsStatsTest.java433 assertEquals(false, callStatsList.get(0).screenInteractive); in testScreenOff()
450 assertEquals(true, callStatsList.get(0).screenInteractive); in testScreenOn()
520 assertEquals(true, stat.screenInteractive); in testGetExportedStatsWhenDetailedTrackingEnabled()
602 assertEquals(false , callStats.screenInteractive); in testOverflow_overflowEntry()
690 assertEquals(false, callStats.screenInteractive); in testTrackScreenInteractiveDisabled()
751 assertEquals(false, callStats.screenInteractive); in testTrackScreenInteractiveDisabled_sampling()
/frameworks/base/services/core/java/com/android/server/stats/
DStatsCompanionService.java1317 e.writeInt(callStat.screenInteractive ? 1 : 0); in pullBinderCallsStats()