/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/ |
D | ThroughputPredictorTest.java | 55 ThroughputPredictor mThroughputPredictor; field in ThroughputPredictorTest 91 mThroughputPredictor = new ThroughputPredictor(mContext); in setUp() 92 mThroughputPredictor.enableVerboseLogging(true); in setUp() 105 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() [all …]
|
D | WifiDataStallTest.java | 76 @Mock ThroughputPredictor mThroughputPredictor; field in WifiDataStallTest 149 mThroughputPredictor, mActiveModeWarden, mClientModeImplMonitor, in setUp() 165 when(mThroughputPredictor.predictTxThroughput(any(), anyInt(), anyInt(), anyInt())) in setUp() 167 when(mThroughputPredictor.predictRxThroughput(any(), anyInt(), anyInt(), anyInt())) in setUp()
|
D | WifiNetworkSelectorTest.java | 141 mThroughputPredictor, in setUp() 321 @Mock private ThroughputPredictor mThroughputPredictor; field in WifiNetworkSelectorTest 1333 when(mThroughputPredictor.predictThroughput(any(), anyInt(), anyInt(), anyInt(), in includeCurrentNetworkWhenCurrentNetworkNotNominated() 3366 when(mThroughputPredictor.predictThroughput(any(), anyInt(), anyInt(), anyInt(), in getWifiCandidates()
|
D | ClientModeImplTest.java | 571 @Mock ThroughputPredictor mThroughputPredictor; field in ClientModeImplTest 796 when(mThroughputPredictor.predictMaxTxThroughput(any())).thenReturn(90); in setUp() 797 when(mThroughputPredictor.predictMaxRxThroughput(any())).thenReturn(80); in setUp() 825 mWifiNetworkSuggestionsManager, mWifiHealthMonitor, mThroughputPredictor, in initializeCmi() 1339 verify(mThroughputPredictor).predictMaxTxThroughput(any()); in connect() 1502 verify(mThroughputPredictor).predictMaxTxThroughput(any()); in connectWithIpProvisionTimeout()
|
/packages/modules/Wifi/service/java/com/android/server/wifi/ |
D | WifiDataStall.java | 68 private final ThroughputPredictor mThroughputPredictor; field in WifiDataStall 161 mThroughputPredictor = throughputPredictor; in WifiDataStall() 336 mTxTputKbps = mThroughputPredictor.predictTxThroughput(connectionCapabilities, in checkDataStallAndThroughputSufficiency() 338 mRxTputKbps = mThroughputPredictor.predictRxThroughput(connectionCapabilities, in checkDataStallAndThroughputSufficiency()
|
D | WifiInjector.java | 232 private final ThroughputPredictor mThroughputPredictor; field in WifiInjector 452 mThroughputPredictor = new ThroughputPredictor(mContext); in WifiInjector() 463 mThroughputPredictor, mWifiChannelUtilizationScan, mWifiGlobals, in WifiInjector() 513 mThroughputPredictor, mActiveModeWarden, mCmiMonitor, mWifiGlobals); in WifiInjector() 675 mThroughputPredictor.enableVerboseLogging(verboseEnabled); in enableVerboseLogging() 875 mWifiNetworkSuggestionsManager, mWifiHealthMonitor, mThroughputPredictor, in makeClientModeImpl()
|
D | WifiNetworkSelector.java | 123 private final ThroughputPredictor mThroughputPredictor; field in WifiNetworkSelector 1707 return mThroughputPredictor.predictThroughput( in predictThroughput() 1808 mThroughputPredictor = throughputPredictor; in WifiNetworkSelector()
|
D | ClientModeImpl.java | 260 private final ThroughputPredictor mThroughputPredictor; field in ClientModeImpl 790 mThroughputPredictor = throughputPredictor; in ClientModeImpl() 3430 int maxTxLinkSpeedMbps = mThroughputPredictor.predictMaxTxThroughput( in updateWifiInfoLinkParamsAfterAssociation() 3432 int maxRxLinkSpeedMbps = mThroughputPredictor.predictMaxRxThroughput( in updateWifiInfoLinkParamsAfterAssociation()
|