Home
last modified time | relevance | path

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

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/storagemonitoring/
DIoStatsTrackerTest.java49 assertEquals(0, ioStatsTracker.getCurrentSample().size()); in testNewUsersAppear()
65 assertEquals(2, ioStatsTracker.getCurrentSample().size()); in testNewUsersAppear()
68 assertTrue(ioStatsTracker.getCurrentSample().get(0).representsSameMetrics(process0)); in testNewUsersAppear()
69 assertTrue(ioStatsTracker.getCurrentSample().get(1).representsSameMetrics(process1)); in testNewUsersAppear()
92 assertEquals(1, ioStatsTracker.getCurrentSample().size()); in testUserMetricsChange()
95 IoStatsEntry sample0 = ioStatsTracker.getCurrentSample().get(0); in testUserMetricsChange()
124 assertEquals(1, ioStatsTracker.getCurrentSample().size()); in testUpdateNoIoProcessActive()
127 IoStatsEntry sample0 = ioStatsTracker.getCurrentSample().get(0); in testUpdateNoIoProcessActive()
153 assertEquals(0, ioStatsTracker.getCurrentSample().size()); in testUpdateNoIoProcessInactive()
177 assertEquals(1, ioStatsTracker.getCurrentSample().size()); in testUpdateIoHappens()
[all …]
/packages/services/Car/service/src/com/android/car/storagemonitoring/
DIoStatsTracker.java137 public SparseArray<IoStatsEntry> getCurrentSample() { in getCurrentSample() method in IoStatsTracker
/packages/services/Car/service/src/com/android/car/
DCarStorageMonitoringService.java271 currentSample = mIoStatsTracker.getCurrentSample(); in collectNewIoMetrics()