Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/fuelgauge/batteryusage/
DDataProcessor.java713 final ArrayMap<Integer, List<AppUsageEvent>> usageEventsByInstanceId = new ArrayMap<>(); in buildAppUsagePeriodList() local
719 if (usageEventsByInstanceId.get(instanceId) == null) { in buildAppUsagePeriodList()
720 usageEventsByInstanceId.put(instanceId, new ArrayList<>()); in buildAppUsagePeriodList()
722 usageEventsByInstanceId.get(instanceId).add(event); in buildAppUsagePeriodList()
728 if (usageEventsByInstanceId.isEmpty()) { in buildAppUsagePeriodList()
734 for (int i = 0; i < usageEventsByInstanceId.size(); i++) { in buildAppUsagePeriodList()
737 final List<AppUsageEvent> usageEvents = usageEventsByInstanceId.valueAt(i); in buildAppUsagePeriodList()