Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiMetrics.java3363 LinkSpeedCount linkSpeedCount = mLinkSpeedCounts.get(linkSpeed); in incrementLinkSpeedCount() local
3364 if (linkSpeedCount == null) { in incrementLinkSpeedCount()
3365 linkSpeedCount = new LinkSpeedCount(); in incrementLinkSpeedCount()
3366 linkSpeedCount.linkSpeedMbps = linkSpeed; in incrementLinkSpeedCount()
3367 mLinkSpeedCounts.put(linkSpeed, linkSpeedCount); in incrementLinkSpeedCount()
3369 linkSpeedCount.count++; in incrementLinkSpeedCount()
3370 linkSpeedCount.rssiSumDbm += Math.abs(rssi); in incrementLinkSpeedCount()
3371 linkSpeedCount.rssiSumOfSquaresDbmSq += rssi * rssi; in incrementLinkSpeedCount()
4554 LinkSpeedCount linkSpeedCount = mLinkSpeedCounts.valueAt(i); in dump() local
4555 sb.append(linkSpeedCount.linkSpeedMbps).append(":{") in dump()
[all …]