Home
last modified time | relevance | path

Searched refs:LongSamplingCounterArray (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DLongSamplingCounterArrayTest.java21 import static com.android.internal.os.BatteryStatsImpl.LongSamplingCounterArray;
69 private LongSamplingCounterArray mCounterArray;
74 mCounterArray = new LongSamplingCounterArray(mTimeBase); in setUp()
82 LongSamplingCounterArray.writeToParcel(parcel, mCounterArray); in testReadWriteParcel()
87 mCounterArray = LongSamplingCounterArray.readFromParcel(parcel, mTimeBase); in testReadWriteParcel()
100 LongSamplingCounterArray.writeSummaryToParcelLocked(parcel, mCounterArray); in testReadWriteSummaryParcel()
105 mCounterArray = LongSamplingCounterArray.readSummaryFromParcelLocked(parcel, mTimeBase); in testReadWriteSummaryParcel()
/frameworks/base/core/java/com/android/internal/os/
DBatteryStatsImpl.java965 public static class LongSamplingCounterArray extends LongCounterArray implements TimeBaseObs { class in BatteryStatsImpl
972 private LongSamplingCounterArray(TimeBase timeBase, Parcel in) { in LongSamplingCounterArray() method in BatteryStatsImpl.LongSamplingCounterArray
981 public LongSamplingCounterArray(TimeBase timeBase) { in LongSamplingCounterArray() method in BatteryStatsImpl.LongSamplingCounterArray
1063 public static void writeToParcel(Parcel out, LongSamplingCounterArray counterArray) { in writeToParcel()
1072 public static LongSamplingCounterArray readFromParcel(Parcel in, TimeBase timeBase) { in readFromParcel()
1074 return new LongSamplingCounterArray(timeBase, in); in readFromParcel()
1081 LongSamplingCounterArray counterArray) { in writeSummaryToParcelLocked()
1090 public static LongSamplingCounterArray readSummaryFromParcelLocked(Parcel in, in readSummaryFromParcelLocked()
1093 final LongSamplingCounterArray counterArray in readSummaryFromParcelLocked()
1094 = new LongSamplingCounterArray(timeBase); in readSummaryFromParcelLocked()
[all …]
/frameworks/base/
Dcompiled-classes-phone5351 com.android.internal.os.BatteryStatsImpl$LongSamplingCounterArray