Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiDataStall.java79 private long mLastTxBytes; field in WifiDataStall
198 mLastTxBytes = 0; in reset()
530 || mLastTxBytes == 0 || mLastRxBytes == 0) { in isThroughputSufficientInternal()
531 mLastTxBytes = txBytes; in isThroughputSufficientInternal()
536 int l3TxTputKbps = (int) ((txBytes - mLastTxBytes) * 8 / timeDeltaLastTwoPollsMs); in isThroughputSufficientInternal()
539 mLastTxBytes = txBytes; in isThroughputSufficientInternal()
DWifiScoreCard.java1064 private long mLastTxBytes; field in WifiScoreCard.PerNetwork
1290 boolean trafficValid = txBytes >= mLastTxBytes && rxBytes >= mLastRxBytes; in updateLinkBandwidth()
1293 logv("invalid traffic count tx " + txBytes + " last " + mLastTxBytes in updateLinkBandwidth()
1295 mLastTxBytes = txBytes; in updateLinkBandwidth()
1302 mLastTxBytes = txBytes; in updateLinkBandwidth()
1341 long txBytesDelta = txBytes - mLastTxBytes; in updateLinkBandwidthTxRxSample()