Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiDataStall.java81 private long mLastRxBytes; field in WifiDataStall
199 mLastRxBytes = 0; in reset()
530 || mLastTxBytes == 0 || mLastRxBytes == 0) { in isThroughputSufficientInternal()
532 mLastRxBytes = rxBytes; in isThroughputSufficientInternal()
537 int l3RxTputKbps = (int) ((rxBytes - mLastRxBytes) * 8 / timeDeltaLastTwoPollsMs); in isThroughputSufficientInternal()
540 mLastRxBytes = rxBytes; in isThroughputSufficientInternal()
DWifiScoreCard.java1064 private long mLastRxBytes; field in WifiScoreCard.PerNetwork
1290 boolean trafficValid = txBytes >= mLastTxBytes && rxBytes >= mLastRxBytes; in updateLinkBandwidth()
1294 + " rx " + rxBytes + " last " + mLastRxBytes); in updateLinkBandwidth()
1296 mLastRxBytes = rxBytes; in updateLinkBandwidth()
1303 mLastRxBytes = rxBytes; in updateLinkBandwidth()
1342 long rxBytesDelta = rxBytes - mLastRxBytes; in updateLinkBandwidthTxRxSample()