Home
last modified time | relevance | path

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

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
DThroughputPredictorTest.java306 assertEquals(400, mThroughputPredictor.predictMaxTxThroughput(mConnectionCap)); in verifyMaxThroughputAc40Mhz2ss()
355 assertEquals(-1, mThroughputPredictor.predictMaxTxThroughput(mConnectionCap)); in verifyMaxThroughputUnknownStandard()
DClientModeImplTest.java568 when(mThroughputPredictor.predictMaxTxThroughput(any())).thenReturn(90); in setUp()
1053 verify(mThroughputPredictor).predictMaxTxThroughput(any()); in connect()
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
DThroughputPredictor.java123 public int predictMaxTxThroughput(@NonNull WifiNative.ConnectionCapabilities capabilities) { in predictMaxTxThroughput() method in ThroughputPredictor
DClientModeImpl.java2687 int maxTxLinkSpeedMbps = throughputPredictor.predictMaxTxThroughput(capabilities); in updateWifiInfoAfterAssociation()