Searched refs:mEventHistoryMaps (Results 1 – 1 of 1) sorted by relevance
67 private final List<Map<String, EventHistoryImpl>> mEventHistoryMaps = new ArrayList<>(); field in EventStore73 mEventHistoryMaps.add(CATEGORY_SHORTCUT_BASED, new ArrayMap<>()); in EventStore()74 mEventHistoryMaps.add(CATEGORY_LOCUS_ID_BASED, new ArrayMap<>()); in EventStore()75 mEventHistoryMaps.add(CATEGORY_CALL, new ArrayMap<>()); in EventStore()76 mEventHistoryMaps.add(CATEGORY_SMS, new ArrayMap<>()); in EventStore()77 mEventHistoryMaps.add(CATEGORY_CLASS_BASED, new ArrayMap<>()); in EventStore()101 mEventHistoryMaps.get(category).putAll(existingEventHistoriesImpl); in loadFromDisk()109 for (Map<String, EventHistoryImpl> map : mEventHistoryMaps) { in saveToDisk()124 return mEventHistoryMaps.get(category).get(key); in getEventHistory()137 return mEventHistoryMaps.get(category).computeIfAbsent(key, in getOrCreateEventHistory()[all …]