Home
last modified time | relevance | path

Searched refs:isScanThrottleEnabled (Results 1 – 11 of 11) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/development/
DWifiScanThrottlingPreferenceControllerTest.java74 when(mWifiManager.isScanThrottleEnabled()).thenReturn(true); in updateState_preferenceShouldBeChecked()
82 when(mWifiManager.isScanThrottleEnabled()).thenReturn(false); in updateState_preferenceShouldNotBeChecked()
/packages/apps/Settings/src/com/android/settings/development/
DWifiScanThrottlingPreferenceController.java53 ((TwoStatePreference) mPreference).setChecked(mWifiManager.isScanThrottleEnabled()); in updateState()
/packages/modules/Wifi/service/java/com/android/server/wifi/
DWifiSettingsConfigStore.java329 mCachedMigrationData.isScanThrottleEnabled()); in migrateFromSettingsIfNeeded()
420 pw.println(mCachedMigrationData.isScanThrottleEnabled()); in dump()
DScanRequestProxy.java526 if (!fromSettingsOrSetupWizard && isScanThrottleEnabled() in startScan()
680 public boolean isScanThrottleEnabled() { in isScanThrottleEnabled() method in ScanRequestProxy
DWifiServiceImpl.java7304 public boolean isScanThrottleEnabled() {
7306 final boolean enable = mScanRequestProxy.isScanThrottleEnabled();
/packages/modules/Wifi/framework/java/android/net/wifi/
DIWifiManager.aidl400 boolean isScanThrottleEnabled(); in isScanThrottleEnabled() method
DBaseWifiService.java926 public boolean isScanThrottleEnabled() { in isScanThrottleEnabled() method in BaseWifiService
DWifiManager.java10848 public boolean isScanThrottleEnabled() { in isScanThrottleEnabled() method in WifiManager
10850 return mService.isScanThrottleEnabled(); in isScanThrottleEnabled()
/packages/modules/Wifi/framework/tests/src/android/net/wifi/
DWifiManagerTest.java3423 when(mWifiService.isScanThrottleEnabled()).thenReturn(false); in testScanThrottle()
3424 assertFalse(mWifiManager.isScanThrottleEnabled()); in testScanThrottle()
3425 verify(mWifiService).isScanThrottleEnabled(); in testScanThrottle()
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DWifiServiceImplTest.java9329 when(mScanRequestProxy.isScanThrottleEnabled()).thenReturn(true); in testIsScanThrottleEnabled()
9330 assertTrue(mWifiServiceImpl.isScanThrottleEnabled()); in testIsScanThrottleEnabled()
9331 verify(mScanRequestProxy).isScanThrottleEnabled(); in testIsScanThrottleEnabled()
/packages/modules/Wifi/framework/api/
Dcurrent.txt497 …esPermission(android.Manifest.permission.ACCESS_WIFI_STATE) public boolean isScanThrottleEnabled();