Searched defs:SamplingTimer (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java479 * Holds a SamplingTimer associated with each kernel wakelock name being tracked.
481 private final HashMap<String, SamplingTimer> mKernelWakelockStats = new HashMap<>();
489 private final HashMap<String, SamplingTimer> mWakeupReasonStats = new HashMap<>();
1117 public static final class SamplingTimer extends Timer { class in class:BatteryStatsImpl
1157 SamplingTimer(TimeBase timeBase, Parcel in) { method in class:BatteryStatsImpl.SamplingTimer
1167 SamplingTimer(TimeBase timeBase, boolean trackReportedValues) { method in class:BatteryStatsImpl.SamplingTimer
1770 public SamplingTimer getWakeupReasonTimerLocked(String name) {
1771 SamplingTimer timer = mWakeupReasonStats.get(name);
1773 timer = new SamplingTimer(mOnBatteryTimeBase, true);
1783 public SamplingTimer getKernelWakelockTimerLocke
[all...]

Completed in 36 milliseconds