Home
last modified time | relevance | path

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

/frameworks/base/core/tests/coretests/src/com/android/internal/os/
DLongSamplingCounterArrayTest.java69 private LongSamplingCounterArray mCounterArray; field in LongSamplingCounterArrayTest
74 mCounterArray = new LongSamplingCounterArray(mTimeBase); in setUp()
82 LongSamplingCounterArray.writeToParcel(parcel, mCounterArray); in testReadWriteParcel()
87 mCounterArray = LongSamplingCounterArray.readFromParcel(parcel, mTimeBase); in testReadWriteParcel()
88 assertArrayEquals(COUNTS, mCounterArray.mCounts, "Unexpected counts"); in testReadWriteParcel()
89 assertArrayEquals(LOADED_COUNTS, mCounterArray.mLoadedCounts, "Unexpected loadedCounts"); in testReadWriteParcel()
90 assertArrayEquals(COUNTS, mCounterArray.mPluggedCounts, "Unexpected pluggedCounts"); in testReadWriteParcel()
91 assertArrayEquals(UNPLUGGED_COUNTS, mCounterArray.mUnpluggedCounts, in testReadWriteParcel()
100 LongSamplingCounterArray.writeSummaryToParcelLocked(parcel, mCounterArray); in testReadWriteSummaryParcel()
105 mCounterArray = LongSamplingCounterArray.readSummaryFromParcelLocked(parcel, mTimeBase); in testReadWriteSummaryParcel()
[all …]