Home
last modified time | relevance | path

Searched refs:getGlobalSettingsInt (Results 1 – 5 of 5) sorted by relevance

/packages/modules/Uwb/service/tests/src/com/android/server/uwb/
DUwbServiceImplTest.java163 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(0); in setUp()
166 when(mUwbInjector.getGlobalSettingsInt(SETTINGS_SATELLITE_MODE_ENABLED, 0)).thenReturn(0); in setUp()
420 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(1); in testToggleStatePersistenceToSharedPrefsWhenApmModeOn()
450 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(1); in testApmModeToggle()
456 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(0); in testApmModeToggle()
484 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(1); in testApmModeSetEnabledWhenUwbRadioNotSetInAndroidUAndHigher()
491 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(0); in testApmModeSetEnabledWhenUwbRadioNotSetInAndroidUAndHigher()
520 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(1); in testApmModeSetEnabledWhenUwbRadioNotSetInAndroidT()
527 when(mUwbInjector.getGlobalSettingsInt(Settings.Global.AIRPLANE_MODE_ON, 0)).thenReturn(0); in testApmModeSetEnabledWhenUwbRadioNotSetInAndroidT()
541 when(mUwbInjector.getGlobalSettingsInt(SETTINGS_SATELLITE_MODE_ENABLED, 0)).thenReturn(1); in testSatelliteModeToggle()
[all …]
DUwbSettingsStoreTest.java144 when(mUwbInjector.getGlobalSettingsInt(SETTINGS_TOGGLE_STATE_KEY_FOR_MIGRATION)).thenReturn( in testMigrationWhenStoreFileEmptyOrNotFound()
162 doThrow(new Settings.SettingNotFoundException("")).when(mUwbInjector).getGlobalSettingsInt( in testNoMigrationLoadFromStoreWhenStoreFileEmptyOrNotFound()
/packages/modules/Uwb/service/java/com/android/server/uwb/
DUwbInjector.java305 public int getGlobalSettingsInt(@NonNull String key) throws Settings.SettingNotFoundException { in getGlobalSettingsInt() method in UwbInjector
312 public int getGlobalSettingsInt(@NonNull String key, int defValue) { in getGlobalSettingsInt() method in UwbInjector
DUwbServiceImpl.java601 return mUwbInjector.getGlobalSettingsInt( in isAirplaneModeOn()
615 return mUwbInjector.getGlobalSettingsInt( in isSatelliteModeOn()
DUwbSettingsStore.java146 mUwbInjector.getGlobalSettingsInt(SETTINGS_TOGGLE_STATE_KEY_FOR_MIGRATION) in initialize()