Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DThroughputPredictorTest.java105 int predicted_5Ghz_80MHz = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verify6GhzRssiBoost()
108 int predicted_6Ghz_20MHz = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verify6GhzRssiBoost()
111 int predicted_6Ghz_80MHz = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verify6GhzRssiBoost()
117 int newPredicted_5Ghz_80MHz = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verify6GhzRssiBoost()
120 int newPredicted_6Ghz_20MHz = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verify6GhzRssiBoost()
123 int newPredicted_6Ghz_80MHz = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verify6GhzRssiBoost()
137 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyVeryLowRssi()
146 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyMaxChannelUtilizationBssLoad()
155 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyMaxChannelUtilizationLinkLayerStats()
164 int predictedThroughputMbps = mThroughputPredictor.predictThroughput(mDeviceCapabilities, in verifyHighRssiMinChannelUtilizationAc5g80Mhz2ss()
[all …]
DWifiNetworkSelectorTest.java1333 when(mThroughputPredictor.predictThroughput(any(), anyInt(), anyInt(), anyInt(), in includeCurrentNetworkWhenCurrentNetworkNotNominated()
3366 when(mThroughputPredictor.predictThroughput(any(), anyInt(), anyInt(), anyInt(), in getWifiCandidates()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiNetworkSelector.java1151 : predictThroughput(scanDetail); in getCandidatesFromScan()
1203 predictThroughput(scanDetail), in getCandidatesFromScan()
1360 predictThroughput(scanDetail), scanDetail.getScanResult().getApMldMacAddress()); in getCandidatesForUserSelection()
1695 private int predictThroughput(@NonNull ScanDetail scanDetail) { in predictThroughput() method in WifiNetworkSelector
1707 return mThroughputPredictor.predictThroughput( in predictThroughput()
DThroughputPredictor.java187 public int predictThroughput(DeviceWiphyCapabilities deviceCapabilities, in predictThroughput() method in ThroughputPredictor