Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/
DCpuUsageHelper.java82 Map<String, Long> cpuUsageFinalMap = new HashMap<>(); in getMetrics() local
162 if (cpuUsageFinalMap.containsKey(finalKey)) { in getMetrics()
164 cpuUsageFinalMap.put( in getMetrics()
165 finalKey, cpuUsage + cpuUsageFinalMap.get(finalKey)); in getMetrics()
167 cpuUsageFinalMap.put(finalKey, cpuUsage); in getMetrics()
172 cpuUsageFinalMap.put(key, cpuUsage); in getMetrics()
187 cpuUsageFinalMap.put(TOTAL_CPU_USAGE, totalCpuUsage); in getMetrics()
190 cpuUsageFinalMap.put(TOTAL_CPU_USAGE_FREQ, totalCpuFreq); in getMetrics()
196 cpuUsageFinalMap.put(TOTAL_CPU_TIME, totalCpuTime); in getMetrics()
199 ((double) cpuUsageFinalMap.get(TOTAL_CPU_USAGE) / totalCpuTime) * 100; in getMetrics()
[all …]