Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/power/stats/
DBatteryStatsImpl.java12625 double controllerMaMs = 0; in updateWifiState() local
12628 controllerMaMs = info.getControllerEnergyUsedMicroJoules() / opVolt; in updateWifiState()
12629 mWifiActivity.getPowerCounter().addCountLocked((long) controllerMaMs); in updateWifiState()
12645 totalEstimatedConsumptionMah = Math.max(controllerMaMs / MILLISECONDS_IN_HOUR, in updateWifiState()
13445 double controllerMaMs = 0; in updateBluetoothStateLocked() local
13447 controllerMaMs = (info.getControllerEnergyUsed() - mLastBluetoothActivityInfo.energy) in updateBluetoothStateLocked()
13450 mBluetoothActivity.getPowerCounter().addCountLocked((long) controllerMaMs); in updateBluetoothStateLocked()
13460 totalEstimatedMah = Math.max(totalEstimatedMah, controllerMaMs / MILLISECONDS_IN_HOUR); in updateBluetoothStateLocked()