Home
last modified time | relevance | path

Searched refs:ACTION_USER_REMOVED (Results 1 – 23 of 23) sorted by relevance

/frameworks/base/services/core/java/com/android/server/connectivity/
DPermissionMonitor.java89 } else if (Intent.ACTION_USER_REMOVED.equals(action)) { in PermissionMonitor()
107 intentFilter.addAction(Intent.ACTION_USER_REMOVED); in startMonitoring()
DVpn.java158 } else if (Intent.ACTION_USER_REMOVED.equals(action)) { in Vpn()
166 intentFilter.addAction(Intent.ACTION_USER_REMOVED); in Vpn()
/frameworks/base/services/usage/java/com/android/server/usage/
DUsageStatsService.java104 new IntentFilter(Intent.ACTION_USER_REMOVED)); in onStart()
121 if (intent != null && intent.getAction().equals(Intent.ACTION_USER_REMOVED)) { in onReceive()
/frameworks/base/services/core/java/com/android/server/clipboard/
DClipboardService.java113 userFilter.addAction(Intent.ACTION_USER_REMOVED); in ClipboardService()
118 if (Intent.ACTION_USER_REMOVED.equals(action)) { in ClipboardService()
/frameworks/base/services/tests/servicestests/src/com/android/server/pm/
DUserManagerTest.java41 IntentFilter filter = new IntentFilter(Intent.ACTION_USER_REMOVED); in setUp()
/frameworks/base/services/core/java/com/android/server/search/
DSearchManagerService.java80 new IntentFilter(Intent.ACTION_USER_REMOVED)); in SearchManagerService()
/frameworks/base/services/core/java/com/android/server/job/
DJobSchedulerService.java145 } else if (Intent.ACTION_USER_REMOVED.equals(intent.getAction())) {
290 final IntentFilter userFilter = new IntentFilter(Intent.ACTION_USER_REMOVED); in onBootPhase()
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
DKeyguardUpdateMonitor.java397 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
622 filter.addAction(Intent.ACTION_USER_REMOVED); in KeyguardUpdateMonitor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DUserSwitcherController.java88 filter.addAction(Intent.ACTION_USER_REMOVED); in UserSwitcherController()
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
DSettingsProvider.java384 userFilter.addAction(Intent.ACTION_USER_REMOVED); in onCreate()
391 if (intent.getAction().equals(Intent.ACTION_USER_REMOVED)) { in onCreate()
/frameworks/base/services/core/java/com/android/server/net/
DNetworkStatsService.java26 import static android.content.Intent.ACTION_USER_REMOVED;
332 final IntentFilter userFilter = new IntentFilter(ACTION_USER_REMOVED); in systemReady()
DNetworkPolicyManagerService.java28 import static android.content.Intent.ACTION_USER_REMOVED;
417 userFilter.addAction(ACTION_USER_REMOVED); in systemReady()
/frameworks/base/services/core/java/com/android/server/wallpaper/
DWallpaperManagerService.java497 userFilter.addAction(Intent.ACTION_USER_REMOVED); in systemRunning()
503 if (Intent.ACTION_USER_REMOVED.equals(action)) { in systemRunning()
/frameworks/base/services/core/java/com/android/server/tv/
DTvInputManagerService.java247 intentFilter.addAction(Intent.ACTION_USER_REMOVED); in registerBroadcastReceivers()
254 } else if (Intent.ACTION_USER_REMOVED.equals(action)) { in registerBroadcastReceivers()
/frameworks/base/services/core/java/com/android/server/
DMountService.java656 } else if (Intent.ACTION_USER_REMOVED.equals(action)) {
1467 userFilter.addAction(Intent.ACTION_USER_REMOVED); in MountService()
DTelephonyRegistry.java286 filter.addAction(Intent.ACTION_USER_REMOVED); in systemRunning()
DInputMethodManagerService.java465 || Intent.ACTION_USER_REMOVED.equals(action)) { in onReceive()
676 broadcastFilter.addAction(Intent.ACTION_USER_REMOVED); in InputMethodManagerService()
/frameworks/base/services/core/java/com/android/server/content/
DSyncManager.java343 if (Intent.ACTION_USER_REMOVED.equals(action)) {
433 intentFilter.addAction(Intent.ACTION_USER_REMOVED); in SyncManager()
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
DAccessibilityManagerService.java351 intentFilter.addAction(Intent.ACTION_USER_REMOVED); in registerBroadcastReceivers()
360 } else if (Intent.ACTION_USER_REMOVED.equals(action)) { in registerBroadcastReceivers()
/frameworks/base/services/core/java/com/android/server/accounts/
DAccountManagerService.java277 userFilter.addAction(Intent.ACTION_USER_REMOVED); in AccountManagerService()
283 if (Intent.ACTION_USER_REMOVED.equals(action)) { in AccountManagerService()
/frameworks/base/services/core/java/com/android/server/pm/
DUserManagerService.java1352 Intent addedIntent = new Intent(Intent.ACTION_USER_REMOVED); in finishRemoveUser()
/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DDevicePolicyManagerService.java294 if (Intent.ACTION_USER_REMOVED.equals(action)) {
920 filter.addAction(Intent.ACTION_USER_REMOVED); in DevicePolicyManagerService()
/frameworks/base/core/java/android/content/
DIntent.java2562 public static final String ACTION_USER_REMOVED = field in Intent