Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DWifiMetrics.java2143 LinkSpeedCount linkSpeedCount = mLinkSpeedCounts.get(linkSpeed); in incrementLinkSpeedCount() local
2144 if (linkSpeedCount == null) { in incrementLinkSpeedCount()
2145 linkSpeedCount = new LinkSpeedCount(); in incrementLinkSpeedCount()
2146 linkSpeedCount.linkSpeedMbps = linkSpeed; in incrementLinkSpeedCount()
2147 mLinkSpeedCounts.put(linkSpeed, linkSpeedCount); in incrementLinkSpeedCount()
2149 linkSpeedCount.count++; in incrementLinkSpeedCount()
2150 linkSpeedCount.rssiSumDbm += Math.abs(rssi); in incrementLinkSpeedCount()
2151 linkSpeedCount.rssiSumOfSquaresDbmSq += rssi * rssi; in incrementLinkSpeedCount()
3262 LinkSpeedCount linkSpeedCount = mLinkSpeedCounts.valueAt(i); in dump() local
3263 sb.append(linkSpeedCount.linkSpeedMbps).append(":{") in dump()
[all …]