Searched refs:systemServiceTimeAtCpuSpeeds (Results 1 – 2 of 2) sorted by relevance
183 final long[] systemServiceTimeAtCpuSpeeds = batteryStats.getSystemServiceTimeAtCpuSpeeds(); in calculatePowerUsingPowerProfile() local184 if (systemServiceTimeAtCpuSpeeds == null) { in calculatePowerUsingPowerProfile()191 final int size = Math.min(mPowerEstimators.length, systemServiceTimeAtCpuSpeeds.length); in calculatePowerUsingPowerProfile()193 powerMah += mPowerEstimators[i].calculatePower(systemServiceTimeAtCpuSpeeds[i] / 1000); in calculatePowerUsingPowerProfile()
15234 long[] systemServiceTimeAtCpuSpeeds = getSystemServiceTimeAtCpuSpeeds();15240 for (int j = systemServiceTimeAtCpuSpeeds.length - 1; j >= 0; j--) {15241 timeUs += systemServiceTimeAtCpuSpeeds[j] * proportionalSystemServiceUsage;