Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/
DBatteryLevelData.java125 final List<List<Long>> hourlyTimestamps = getHourlyTimestamps(dailyTimestamps); in BatteryLevelData() local
129 mHourlyBatteryLevelsPerDay = new ArrayList<>(hourlyTimestamps.size()); in BatteryLevelData()
130 for (int i = 0; i < hourlyTimestamps.size(); i++) { in BatteryLevelData()
131 final List<Long> hourlyTimestampsPerDay = hourlyTimestamps.get(i); in BatteryLevelData()
216 final List<List<Long>> hourlyTimestamps = new ArrayList<>(); in getHourlyTimestamps() local
230 hourlyTimestamps.add(hourlyTimestampsPerDay); in getHourlyTimestamps()
232 return hourlyTimestamps; in getHourlyTimestamps()
DDataProcessor.java535 final List<Long> hourlyTimestamps = in getBatteryDiffDataMap() local
537 for (int hourlyIndex = 0; hourlyIndex < hourlyTimestamps.size() - 1; hourlyIndex++) { in getBatteryDiffDataMap()
538 final Long startTimestamp = hourlyTimestamps.get(hourlyIndex); in getBatteryDiffDataMap()
539 final Long endTimestamp = hourlyTimestamps.get(hourlyIndex + 1); in getBatteryDiffDataMap()
1279 final List<Long> hourlyTimestamps = in insertHourlyUsageDiffData() local
1281 for (int hourlyIndex = 0; hourlyIndex < hourlyTimestamps.size() - 1; hourlyIndex++) { in insertHourlyUsageDiffData()
1282 final Long startTimestamp = hourlyTimestamps.get(hourlyIndex); in insertHourlyUsageDiffData()