Searched refs:systemServiceTimeAtCpuSpeeds (Results 1 – 2 of 2) sorted by relevance
138 final long[] systemServiceTimeAtCpuSpeeds = batteryStats.getSystemServiceTimeAtCpuSpeeds(); in calculatePowerUsingPowerProfile() local139 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()
16186 long[] systemServiceTimeAtCpuSpeeds = getSystemServiceTimeAtCpuSpeeds();16192 for (int j = systemServiceTimeAtCpuSpeeds.length - 1; j >= 0; j--) {16193 timeUs += systemServiceTimeAtCpuSpeeds[j] * proportionalSystemServiceUsage;