Merge changes from topic 'wakelockTotalDuration' into oc-dev

am: 6b1989c7e2

Change-Id: I04a7323ed927ebfad40129166d7e0cc61be7b3af
This commit is contained in:
Bookatz
2017-05-08 18:57:34 +00:00
committed by android-build-merger

View File

@@ -2756,9 +2756,9 @@ public abstract class BatteryStats implements Parcelable {
long elapsedRealtimeUs, String name, int which, String linePrefix) {
long totalTimeMicros = 0;
int count = 0;
long max = -1;
long current = -1;
long totalDuration = -1;
long max = 0;
long current = 0;
long totalDuration = 0;
if (timer != null) {
totalTimeMicros = timer.getTotalTimeLocked(elapsedRealtimeUs, which);
count = timer.getCountLocked(which);