Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/
DStatsdStatsHelper.java82 Map<String, Long> resultMap = new HashMap<>(); in getMetrics() local
85 populateAtomStats(report.atomStats, resultMap); in getMetrics()
86 populateConfigStats(report.configStats, resultMap); in getMetrics()
87 populateAnomalyAlarmStats(report.anomalyAlarmStats, resultMap); in getMetrics()
88 populatePulledAtomStats(report.pulledAtomStats, resultMap); in getMetrics()
89 populateAtomMetricStats(report.atomMetricStats, resultMap); in getMetrics()
90 populateDetectedLogLossStats(report.detectedLogLoss, resultMap); in getMetrics()
91 populateEventQueueOverflowStats(report.queueOverflow, resultMap); in getMetrics()
93 return resultMap; in getMetrics()
102 StatsLog.StatsdStatsReport.AtomStats[] stats, Map<String, Long> resultMap) { in populateAtomStats() argument
[all …]
/platform_testing/libraries/collectors-helper/utilities/src/com/android/helpers/
DMetricUtility.java49 StringBuilder> resultMap) { in addMetric() argument
50 resultMap.compute(metricKey, (key, value) -> (value == null) ? in addMetric()
62 String metricKey, double metric, Map<String, StringBuilder> resultMap) { in addMetric() argument
63 resultMap.compute( in addMetric()
77 Integer> resultMap) { in addMetric() argument
78 resultMap.compute(metricKey, (key, value) -> (value == null) ? 1 : value + 1); in addMetric()
89 String metricKey, Map<String, StringBuilder> resultMap) { in getMetricDoubles() argument
91 if (!resultMap.containsKey(metricKey)) { in getMetricDoubles()
95 String value = resultMap.get(metricKey).toString(); in getMetricDoubles()