Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DBatteryStatsStopwatchTimerTest.java43 timer.startRunningLocked(updateTime(clocks, 100)); // start in testCount()
46 timer.startRunningLocked(updateTime(clocks, 110)); // start in testCount()
54 timer.startRunningLocked(updateTime(clocks, 200)); // start in testCount()
59 timer.startRunningLocked(updateTime(clocks, 300)); // start in testCount()
70 timer.startRunningLocked(updateTime(clocks, 400)); // start in testCount()
85 timer.startRunningLocked(updateTime(clocks, 2100)); // start in testCount()
88 timer.startRunningLocked(updateTime(clocks, 2110)); // start in testCount()
96 timer.startRunningLocked(updateTime(clocks, 2200)); // start in testCount()
101 timer.startRunningLocked(updateTime(clocks, 2300)); // start in testCount()
111 timer.startRunningLocked(updateTime(clocks, 2400)); // start in testCount()
[all …]
DBatteryStatsDurationTimerTest.java50 timer.startRunningLocked(700); in testStartStop()
65 timer.startRunningLocked(12700); in testStartStop()
79 timer.startRunningLocked(27000); in testStartStop()
120 timer.startRunningLocked(300); in testParceling()
135 summary.startRunningLocked(3100); in testParceling()
DBatteryStatsDualTimerTest.java48 timer.startRunningLocked(clocks.realtime); in testResetDetach()
DBatteryStatsServTest.java446 serv.startRunningLocked(); in testStartRunningLockedWhileRunning()
484 serv.startRunningLocked(); in testStartRunningLockedWhileNotRunning()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java1870 public void startRunningLocked(long elapsedRealtimeMs) { in startRunningLocked() method in BatteryStatsImpl.DurationTimer
1871 super.startRunningLocked(elapsedRealtimeMs); in startRunningLocked()
2037 public void startRunningLocked(long elapsedRealtimeMs) { in startRunningLocked() method in BatteryStatsImpl.StopwatchTimer
2234 public void startRunningLocked(long elapsedRealtimeMs) { in startRunningLocked() method in BatteryStatsImpl.DualTimer
2235 super.startRunningLocked(elapsedRealtimeMs); in startRunningLocked()
2236 mSubTimer.startRunningLocked(elapsedRealtimeMs); in startRunningLocked()
4083 mScreenOnTimer.startRunningLocked(elapsedRealtime); in noteScreenStateLocked()
4085 … mScreenBrightnessTimer[mScreenBrightnessBin].startRunningLocked(elapsedRealtime); in noteScreenStateLocked()
4144 mScreenBrightnessTimer[bin].startRunningLocked(elapsedRealtime); in noteScreenBrightnessLocked()
4170 mInteractiveTimer.startRunningLocked(elapsedRealtime); in noteInteractiveLocked()
[all …]
/frameworks/base/services/core/java/com/android/server/am/
DActiveServices.java534 r.stats.startRunningLocked(); in startServiceInnerLocked()