Home
last modified time | relevance | path

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

/platform_testing/libraries/collectors-helper/statsd/test/src/com/android/helpers/
DCpuUsageHelperTest.java84 Map<String, Long> cpuUsage = mCpuUsageHelper.getMetrics(); in testCpuUsageMetrics() local
86 assertTrue(cpuUsage.size() > 2); in testCpuUsageMetrics()
164 Map<String, Long> cpuUsage = mCpuUsageHelper.getMetrics(); in testCpuDisabledPerPkgPerFreq() local
165 assertTrue(cpuUsage.size() == 2); in testCpuDisabledPerPkgPerFreq()
166 assertTrue(cpuUsage.containsKey(TOTAL_CPU_USAGE_FREQ)); in testCpuDisabledPerPkgPerFreq()
167 assertTrue(cpuUsage.containsKey(TOTAL_CPU_USAGE)); in testCpuDisabledPerPkgPerFreq()
184 Map<String, Long> cpuUsage = mCpuUsageHelper.getMetrics(); in testCpuUsageOnlyPerPkg() local
185 assertTrue(cpuUsage.size() > 2); in testCpuUsageOnlyPerPkg()
205 Map<String, Long> cpuUsage = mCpuUsageHelper.getMetrics(); in testCpuUsageOnlyPerFreq() local
206 assertTrue(cpuUsage.size() > 2); in testCpuUsageOnlyPerFreq()
[all …]
/platform_testing/libraries/collectors-helper/statsd/src/com/android/helpers/
DCpuUsageHelper.java154 Long cpuUsage = cpuUsageList.get(cpuUsageList.size() - 1) in getMetrics() local
157 if (cpuUsage > 0) { in getMetrics()
165 finalKey, cpuUsage + cpuUsageFinalMap.get(finalKey)); in getMetrics()
167 cpuUsageFinalMap.put(finalKey, cpuUsage); in getMetrics()
172 cpuUsageFinalMap.put(key, cpuUsage); in getMetrics()
178 totalCpuUsage += cpuUsage; in getMetrics()
181 totalCpuFreq += cpuUsage; in getMetrics()