Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/bluetooth/
H A DBluetoothActivityEnergyInfo.java46 long txTime, long rxTime, long idleTime, long energyUsed) { in BluetoothActivityEnergyInfo() argument
49 mControllerTxTimeMs = txTime; in BluetoothActivityEnergyInfo()
/aosp12/frameworks/base/core/java/com/android/internal/os/
H A DWifiPowerCalculator.java204 final long txTime = counter.getTxTimeCounters()[0].getCountLocked(statsType); in calculateApp() local
207 powerDurationAndTraffic.durationMs = idleTime + rxTime + txTime; in calculateApp()
210 = calcPowerFromControllerDataMah(rxTime, txTime, idleTime); in calculateApp()
215 + "ms tx=" + txTime + "ms power=" + formatCharge( in calculateApp()
/aosp12/frameworks/base/core/java/android/os/connectivity/
H A DWifiActivityEnergyInfo.java164 long txTime = in.readLong();
169 txTime, rxTime, scanTime, idleTime);
/aosp12/packages/modules/Wifi/framework/java/android/net/wifi/
H A DWifiUsabilityStatsEntry.java478 public RadioStats(int radioId, long onTime, long txTime, long rxTime, long onTimeScan, in RadioStats() argument
483 this.mTotalRadioTxTimeMillis = txTime; in RadioStats()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterService.java3399 private void energyInfoCallback(int status, int ctrlState, long txTime, long rxTime, in energyInfoCallback() argument
3407 final long txMah = Math.multiplyExact(txTime, getTxCurrentMa()); in energyInfoCallback()
3425 totalTxTimeMs = Math.addExact(mTxTimeTotalMs, txTime); in energyInfoCallback()
3457 verboseLog("energyInfoCallback() status = " + status + "txTime = " + txTime + "rxTime = " in energyInfoCallback()