Home
last modified time | relevance | path

Searched refs:mThroughputPredictor (Results 1 – 8 of 8) sorted by relevance

/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DThroughputPredictorTest.java55 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 …]
DWifiDataStallTest.java76 @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()
DWifiNetworkSelectorTest.java141 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()
DClientModeImplTest.java571 @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/
DWifiDataStall.java68 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()
DWifiInjector.java232 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()
DWifiNetworkSelector.java123 private final ThroughputPredictor mThroughputPredictor; field in WifiNetworkSelector
1707 return mThroughputPredictor.predictThroughput( in predictThroughput()
1808 mThroughputPredictor = throughputPredictor; in WifiNetworkSelector()
DClientModeImpl.java260 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()