Searched defs:txTimeMs (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DModemActivityInfo.java47 int[] txTimeMs, int rxTimeMs, int energyUsed) {
51 if (txTimeMs != null) {
52 System.arraycopy(txTimeMs, 0, mTxTimeMs, 0, Math.min(txTimeMs.length, TX_POWER_LEVELS));
80 int[] txTimeMs = new int[TX_POWER_LEVELS];
82 txTimeMs[i] = in.readInt();
87 txTimeMs, rxTimeMs, energyUsed);
125 public void setTxTimeMillis(int[] txTimeMs) { argument
126 mTxTimeMs = txTimeMs;
46 ModemActivityInfo(long timestamp, int sleepTimeMs, int idleTimeMs, int[] txTimeMs, int rxTimeMs, int energyUsed) argument
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java11153 final long txTimeMs = info.getControllerTxTimeMillis();
11157 final long totalTimeMs = txTimeMs + rxTimeMs + idleTimeMs;
11160 long leftOverTxTimeMs = txTimeMs;
11164 Slog.d(TAG, " Tx Time: " + txTimeMs + " ms");
11194 if (DEBUG_ENERGY && totalScanTimeMs > txTimeMs) {
11197 + txTimeMs + " ms). Normalizing scan time.");
11224 if (totalScanTimeMs > txTimeMs) {
11225 scanTxTimeSinceMarkMs = (txTimeMs * scanTxTimeSinceMarkMs) /
11326 int[] txTimeMs = new int[ModemActivityInfo.TX_POWER_LEVELS];
11328 txTimeMs[
11550 long txTimeMs; field in class:BatteryStatsImpl.BluetoothActivityInfoCache
[all...]

Completed in 118 milliseconds