Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/power/stats/
DSystemServicePowerCalculator.java138 final long[] systemServiceTimeAtCpuSpeeds = batteryStats.getSystemServiceTimeAtCpuSpeeds(); in calculatePowerUsingPowerProfile() local
139 if (systemServiceTimeAtCpuSpeeds == null) { in calculatePowerUsingPowerProfile()
146 final int size = Math.min(mPowerEstimators.length, systemServiceTimeAtCpuSpeeds.length); in calculatePowerUsingPowerProfile()
148 powerMah += mPowerEstimators[i].calculatePower(systemServiceTimeAtCpuSpeeds[i] / 1000); in calculatePowerUsingPowerProfile()
DBatteryStatsImpl.java16186 long[] systemServiceTimeAtCpuSpeeds = getSystemServiceTimeAtCpuSpeeds();
16192 for (int j = systemServiceTimeAtCpuSpeeds.length - 1; j >= 0; j--) {
16193 timeUs += systemServiceTimeAtCpuSpeeds[j] * proportionalSystemServiceUsage;