Home
last modified time | relevance | path

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

/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastConfigService.java175 resetAllPreferences(); in onHandleIntent()
188 resetAllPreferences(); in onHandleIntent()
198 public void resetAllPreferences() { in resetAllPreferences() method in CellBroadcastConfigService
199 CellBroadcastSettings.resetAllPreferences(getApplicationContext()); in resetAllPreferences()
DCellBroadcastSettings.java250 public static void resetAllPreferences(Context c) { in resetAllPreferences() method in CellBroadcastSettings
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/unit/
DCellBroadcastConfigServiceTest.java1408 doNothing().when(mConfigService).resetAllPreferences(); in testResetCellBroadcastSettingsAsNeeded()
1441 verify(mConfigService, never()).resetAllPreferences(); in testResetCellBroadcastSettingsAsNeeded()
1457 verify(mConfigService, times(++c)).resetAllPreferences(); in testResetCellBroadcastSettingsAsNeeded()
1477 verify(mConfigService, times(aggregationCount)).resetAllPreferences(); in testResetCellBroadcastSettingsAsNeeded()
1491 verify(mConfigService, times(++c + aggregationCount)).resetAllPreferences(); in testResetCellBroadcastSettingsAsNeeded()
DCellBroadcastSettingsTest.java171 CellBroadcastSettings.resetAllPreferences(mContext); in testResetAllPreferences()