Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/com/android/internal/os/
H A DSystemServicePowerCalculator.java183 final long[] systemServiceTimeAtCpuSpeeds = batteryStats.getSystemServiceTimeAtCpuSpeeds(); in calculatePowerUsingPowerProfile() local
184 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()
H A DBatteryStatsImpl.java15234 long[] systemServiceTimeAtCpuSpeeds = getSystemServiceTimeAtCpuSpeeds();
15240 for (int j = systemServiceTimeAtCpuSpeeds.length - 1; j >= 0; j--) {
15241 timeUs += systemServiceTimeAtCpuSpeeds[j] * proportionalSystemServiceUsage;