Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiDataStall.java146 int rxLinkSpeed = wifiInfo.getRxLinkSpeedMbps(); in checkForDataStall() local
162 if (rxLinkSpeed > 0) { in checkForDataStall()
163 int rxTput = rxLinkSpeed * (100 - ccaLevel); in checkForDataStall()
DWifiScoreReport.java257 int rxLinkSpeed = wifiInfo.getRxLinkSpeedMbps(); in logLinkMetrics() local
268 rssi, filteredRssi, rssiThreshold, freq, txLinkSpeed, rxLinkSpeed, in logLinkMetrics()
DWifiMetrics.java1685 public void incrementRxLinkSpeedBandCount(int rxLinkSpeed, int frequency) { in incrementRxLinkSpeedBandCount() argument
1687 && rxLinkSpeed >= MIN_LINK_SPEED_MBPS)) { in incrementRxLinkSpeedBandCount()
1692 mRxLinkSpeedCount2g.increment(rxLinkSpeed); in incrementRxLinkSpeedBandCount()
1694 mRxLinkSpeedCount5gLow.increment(rxLinkSpeed); in incrementRxLinkSpeedBandCount()
1696 mRxLinkSpeedCount5gMid.increment(rxLinkSpeed); in incrementRxLinkSpeedBandCount()
1698 mRxLinkSpeedCount5gHigh.increment(rxLinkSpeed); in incrementRxLinkSpeedBandCount()
/frameworks/base/wifi/java/android/net/wifi/
DWifiInfo.java424 public void setRxLinkSpeedMbps(int rxLinkSpeed) { in setRxLinkSpeedMbps() argument
425 mRxLinkSpeed = rxLinkSpeed; in setRxLinkSpeedMbps()