Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiDataStall.java145 int txLinkSpeed = wifiInfo.getLinkSpeed(); in checkForDataStall() local
158 if (txLinkSpeed > 0) { in checkForDataStall()
159 int txTput = txLinkSpeed * (100 - txPer) * (100 - ccaLevel); in checkForDataStall()
DWifiScoreReport.java256 int txLinkSpeed = wifiInfo.getLinkSpeed(); in logLinkMetrics() local
268 rssi, filteredRssi, rssiThreshold, freq, txLinkSpeed, rxLinkSpeed, in logLinkMetrics()
DWifiMetrics.java1660 public void incrementTxLinkSpeedBandCount(int txLinkSpeed, int frequency) { in incrementTxLinkSpeedBandCount() argument
1662 && txLinkSpeed >= MIN_LINK_SPEED_MBPS)) { in incrementTxLinkSpeedBandCount()
1667 mTxLinkSpeedCount2g.increment(txLinkSpeed); in incrementTxLinkSpeedBandCount()
1669 mTxLinkSpeedCount5gLow.increment(txLinkSpeed); in incrementTxLinkSpeedBandCount()
1671 mTxLinkSpeedCount5gMid.increment(txLinkSpeed); in incrementTxLinkSpeedBandCount()
1673 mTxLinkSpeedCount5gHigh.increment(txLinkSpeed); in incrementTxLinkSpeedBandCount()
/frameworks/base/wifi/java/android/net/wifi/
DWifiInfo.java406 public void setTxLinkSpeedMbps(int txLinkSpeed) { in setTxLinkSpeedMbps() argument
407 mTxLinkSpeed = txLinkSpeed; in setTxLinkSpeedMbps()