Home
last modified time | relevance | path

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

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DThroughputPredictorTest.java347 assertEquals(11, mThroughputPredictor.predictMaxTxThroughput(mConnectionCap)); in verifyMaxThroughput11BMode()
355 assertEquals(400, mThroughputPredictor.predictMaxTxThroughput(mConnectionCap)); in verifyMaxThroughputAc40Mhz2ss()
412 assertEquals(-1, mThroughputPredictor.predictMaxTxThroughput(mConnectionCap)); in verifyMaxThroughputUnknownStandard()
DClientModeImplTest.java796 when(mThroughputPredictor.predictMaxTxThroughput(any())).thenReturn(90); in setUp()
1339 verify(mThroughputPredictor).predictMaxTxThroughput(any()); in connect()
1502 verify(mThroughputPredictor).predictMaxTxThroughput(any()); in connectWithIpProvisionTimeout()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DThroughputPredictor.java129 public int predictMaxTxThroughput(@NonNull WifiNative.ConnectionCapabilities capabilities) { in predictMaxTxThroughput() method in ThroughputPredictor
DClientModeImpl.java3430 int maxTxLinkSpeedMbps = mThroughputPredictor.predictMaxTxThroughput( in updateWifiInfoLinkParamsAfterAssociation()