Searched refs:sdFilter (Results 1 – 6 of 6) sorted by relevance
/aosp14/frameworks/base/core/java/android/content/pm/ |
H A D | RegisteredServicesCache.java | 175 IntentFilter sdFilter = new IntentFilter(); in RegisteredServicesCache() local 176 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredServicesCache() 177 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredServicesCache() 179 sdFilter.setPriority(IntentFilter.SYSTEM_HIGH_PRIORITY); in RegisteredServicesCache() 181 mContext.registerReceiver(mExternalReceiver, sdFilter, null, handler); in RegisteredServicesCache()
|
/aosp14/frameworks/base/packages/SettingsLib/src/com/android/settingslib/applications/ |
H A D | ApplicationsState.java | 1500 IntentFilter sdFilter = new IntentFilter(); in registerReceiver() local 1501 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in registerReceiver() 1502 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in registerReceiver() 1503 mContext.registerReceiver(this, sdFilter); in registerReceiver()
|
/aosp14/frameworks/base/services/backup/java/com/android/server/backup/ |
H A D | UserBackupManagerService.java | 983 IntentFilter sdFilter = new IntentFilter(); in initPackageTracking() local 984 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in initPackageTracking() 985 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in initPackageTracking() 989 sdFilter, in initPackageTracking()
|
/aosp14/frameworks/base/apex/jobscheduler/service/java/com/android/server/alarm/ |
H A D | AlarmManagerService.java | 5280 IntentFilter sdFilter = new IntentFilter(); in UninstallReceiver() local 5281 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in UninstallReceiver() 5282 sdFilter.addAction(Intent.ACTION_USER_STOPPED); in UninstallReceiver() 5283 sdFilter.addAction(Intent.ACTION_UID_REMOVED); in UninstallReceiver() 5284 getContext().registerReceiverForAllUsers(this, sdFilter, in UninstallReceiver()
|
/aosp14/frameworks/base/services/appwidget/java/com/android/server/appwidget/ |
H A D | AppWidgetServiceImpl.java | 333 IntentFilter sdFilter = new IntentFilter(); in registerBroadcastReceiver() local 334 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in registerBroadcastReceiver() 335 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in registerBroadcastReceiver() 337 sdFilter, null, mCallbackHandler); in registerBroadcastReceiver()
|
/aosp14/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationManagerService.java | 2477 IntentFilter sdFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in init() local 2478 getContext().registerReceiverAsUser(mPackageIntentReceiver, UserHandle.ALL, sdFilter, null, in init()
|