Home
last modified time | relevance | path

Searched refs:ACTION_SETTING_RESTORED (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/core/java/com/android/server/vr/
DSettingsObserver.java73 if (Intent.ACTION_SETTING_RESTORED.equals(intent.getAction())) { in SettingsObserver()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsHelper.java166 Intent intent = new Intent(Intent.ACTION_SETTING_RESTORED) in restoreValue()
/frameworks/base/services/core/java/com/android/server/notification/
DManagedServices.java128 IntentFilter filter = new IntentFilter(Intent.ACTION_SETTING_RESTORED); in ManagedServices()
136 if (Intent.ACTION_SETTING_RESTORED.equals(intent.getAction())) { in onReceive()
/frameworks/base/services/core/java/com/android/server/
DBluetoothManagerService.java329 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) {
385 filter.addAction(Intent.ACTION_SETTING_RESTORED); in BluetoothManagerService()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java409 intentFilter.addAction(Intent.ACTION_SETTING_RESTORED); in registerBroadcastReceivers()
431 } else if (Intent.ACTION_SETTING_RESTORED.equals(action)) { in registerBroadcastReceivers()
/frameworks/base/core/java/android/content/
DIntent.java3460 public static final String ACTION_SETTING_RESTORED = "android.os.action.SETTING_RESTORED"; field in Intent