Home
last modified time | relevance | path

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

/aosp12/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
H A DThroughputPredictorTest.java97 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyVeryLowRssi()
106 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyMaxChannelUtilizationBssLoad()
115 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyMaxChannelUtilizationLinkLayerStats()
124 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyHighRssiMinChannelUtilizationAc5g80Mhz2ss()
139 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyHighRssiMinChannelUtilizationAc5g80Mhz2ssOverriddenTo1ss()
155 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyHighRssiMinChannelUtilizationAx5g160Mhz4ss()
174 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyHighRssiMinChannelUtilizationAx5g160Mhz4ssOverriddenTo2ss()
184 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyMidRssiMinChannelUtilizationAc5g80Mhz2ss()
193 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyLowRssiMinChannelUtilizationAc5g80Mhz2ss()
202 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyLowRssiDefaultChannelUtilizationAc5g80Mhz2ss()
[all …]
H A DWifiNetworkSelectorTest.java810 when(mThroughputPredictor.predictThroughput(any(), anyInt(), anyInt(), anyInt(), in includeCurrentNetworkWhenCurrentNetworkNotNominated()
/aosp12/packages/modules/Wifi/service/java/com/android/server/wifi/
H A DWifiNetworkSelector.java858 int predictedTputMbps = (scanDetail == null) ? 0 : predictThroughput(scanDetail); in getCandidatesFromScan()
897 predictThroughput(scanDetail)); in getCandidatesFromScan()
1177 private int predictThroughput(@NonNull ScanDetail scanDetail) { in predictThroughput() method in WifiNetworkSelector
1189 return mThroughputPredictor.predictThroughput( in predictThroughput()
H A DThroughputPredictor.java180 public int predictThroughput(DeviceWiphyCapabilities deviceCapabilities, in predictThroughput() method in ThroughputPredictor