Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/
DDataProcessor.java462 final List<Long> timestampSlots = new ArrayList<>(); in getTimestampSlots() local
464 return timestampSlots; in getTimestampSlots()
470 return timestampSlots; in getTimestampSlots()
472 timestampSlots.add(startTimestamp); in getTimestampSlots()
476 timestampSlots.add(timestamp); in getTimestampSlots()
478 timestampSlots.add(endTimestamp); in getTimestampSlots()
479 return timestampSlots; in getTimestampSlots()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batteryusage/
DDataProcessorTest.java2514 final ArrayList<Long> timestampSlots = new ArrayList<>(); in verifyExpectedTimestampSlots() local
2515 timestampSlots.add(startTimestamp); in verifyExpectedTimestampSlots()
2518 DataProcessor.getTimestampSlots(timestampSlots, currentTimestamp); in verifyExpectedTimestampSlots()