Searched refs:mBundleHistory (Results 1 – 2 of 2) sorted by relevance
65 private Map<String, List<PersistableBundle>> mBundleHistory = new HashMap<>(); field in CarTelemetryActivity166 if (!mBundleHistory.containsKey(metricsConfigName)) { in onServiceBound()167 mBundleHistory.put(metricsConfigName, new ArrayList<PersistableBundle>()); in onServiceBound()169 mBundleHistory.get(metricsConfigName).add(report); in onServiceBound()226 if (!mBundleHistory.containsKey(configName)) { in getBundleHistoryString()229 for (PersistableBundle bundle : mBundleHistory.get(configName)) { in getBundleHistoryString()264 if (mBundleHistory.containsKey(configData.name)) { in clearConfigData()265 mBundleHistory.get(configData.name).clear(); in clearConfigData()280 if (!mBundleHistory.containsKey(configName)) { in lazyInitHistories()282 mBundleHistory.put(configName, mService.getBundleHistory(configName)); in lazyInitHistories()
57 private Map<String, Deque<PersistableBundle>> mBundleHistory = new HashMap<>(); field in CarMetricsCollectorService99 return new ArrayList(mBundleHistory.get(configName));109 mBundleHistory.get(configName).clear();187 mBundleHistory.put(config.getName(), new ArrayDeque<>()); in updateConfigData()196 mBundleHistory.remove(name); in updateConfigData()242 if (!mBundleHistory.containsKey(metricsConfigName)) { in onResult()243 mBundleHistory.put(metricsConfigName, new ArrayDeque<>()); in onResult()245 Deque<PersistableBundle> reportHistory = mBundleHistory.get(metricsConfigName); in onResult()