Lines Matching defs:SamplingTimer

479      * 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 {
1157 SamplingTimer(TimeBase timeBase, Parcel in) {
1167 SamplingTimer(TimeBase timeBase, boolean trackReportedValues) {
1770 public SamplingTimer getWakeupReasonTimerLocked(String name) {
1771 SamplingTimer timer = mWakeupReasonStats.get(name);
1773 timer = new SamplingTimer(mOnBatteryTimeBase, true);
1783 public SamplingTimer getKernelWakelockTimerLocked(String name) {
1784 SamplingTimer kwlt = mKernelWakelockStats.get(name);
1786 kwlt = new SamplingTimer(mOnBatteryScreenOffTimeBase, true /* track reported values */);
2893 SamplingTimer timer = getWakeupReasonTimerLocked(mLastWakeupReason);
7535 for (SamplingTimer timer : mKernelWakelockStats.values()) {
7542 for (SamplingTimer timer : mWakeupReasonStats.values()) {
8000 SamplingTimer kwlt = mKernelWakelockStats.get(name);
8002 kwlt = new SamplingTimer(mOnBatteryScreenOffTimeBase,
8017 for (Map.Entry<String, SamplingTimer> ent : mKernelWakelockStats.entrySet()) {
8018 SamplingTimer st = ent.getValue();
9602 for (Map.Entry<String, SamplingTimer> ent : mKernelWakelockStats.entrySet()) {
9614 for (Map.Entry<String, SamplingTimer> ent : mWakeupReasonStats.entrySet()) {
9615 SamplingTimer timer = ent.getValue();
9974 SamplingTimer kwlt = new SamplingTimer(mOnBatteryScreenOffTimeBase, in);
9984 SamplingTimer timer = new SamplingTimer(mOnBatteryTimeBase, in);
10115 for (Map.Entry<String, SamplingTimer> ent : mKernelWakelockStats.entrySet()) {
10116 SamplingTimer kwlt = ent.getValue();
10126 for (Map.Entry<String, SamplingTimer> ent : mWakeupReasonStats.entrySet()) {
10127 SamplingTimer timer = ent.getValue();