Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiDataStall.java384 int rxLinkSpeedMbps = wifiInfo.getRxLinkSpeedMbps(); in checkDataStallAndThroughputSufficiency() local
415 if (rxLinkSpeedMbps > 0) { in checkDataStallAndThroughputSufficiency()
418 || rxLinkSpeedMbps > mDeviceConfigFacade.getRxLinkSpeedLowThresholdMbps()) { in checkDataStallAndThroughputSufficiency()
419 mRxTputKbps = (int) ((long) rxLinkSpeedMbps * 1000 in checkDataStallAndThroughputSufficiency()
DWifiMetrics.java4368 line.append(",rx_link_speed_mbps=" + entry.rxLinkSpeedMbps); in printWifiUsabilityStatsEntry()
6312 wifiUsabilityStatsEntry.rxLinkSpeedMbps = info.getRxLinkSpeedMbps();
6502 s.rxLinkSpeedMbps, s.timeSliceDutyCycleInPercent, contentionTimeStats, rateStats,
6676 out.rxLinkSpeedMbps = s.rxLinkSpeedMbps;
/packages/modules/Wifi/framework/java/android/net/wifi/
DWifiUsabilityStatsEntry.java617 int probeMcsRateSinceLastUpdate, int rxLinkSpeedMbps, in WifiUsabilityStatsEntry() argument
646 mRxLinkSpeedMbps = rxLinkSpeedMbps; in WifiUsabilityStatsEntry()
/packages/apps/Settings/src/com/android/settings/wifi/details2/
DWifiDetailPreferenceController2.java680 int rxLinkSpeedMbps = mWifiInfo.getRxLinkSpeedMbps(); in refreshRxSpeed() local
681 mRxLinkSpeedPref.setVisible(rxLinkSpeedMbps >= 0); in refreshRxSpeed()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiMetricsTest.java3971 assertEquals(info.getRxLinkSpeedMbps(), usabilityStats.rxLinkSpeedMbps); in assertUsabilityStatsAssignment()