Searched refs:sdFilter (Results 1 – 9 of 9) sorted by relevance
/packages/services/Car/tests/MultiDisplaySecondaryHomeTestLauncher/src/com/android/car/multidisplay/launcher/ |
D | PackageIntentReceiver.java | 40 IntentFilter sdFilter = new IntentFilter(); in PackageIntentReceiver() local 41 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in PackageIntentReceiver() 42 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in PackageIntentReceiver() 43 context.registerReceiver(this, sdFilter); in PackageIntentReceiver()
|
/packages/services/Car/tests/SecondaryHomeApp/src/com/android/car/secondaryhome/launcher/ |
D | PackageIntentReceiver.java | 40 IntentFilter sdFilter = new IntentFilter(); in PackageIntentReceiver() local 41 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in PackageIntentReceiver() 42 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in PackageIntentReceiver() 43 context.registerReceiver(this, sdFilter); in PackageIntentReceiver()
|
/packages/apps/Nfc/src/com/android/nfc/ |
D | RegisteredComponentCache.java | 77 IntentFilter sdFilter = new IntentFilter(); in RegisteredComponentCache() local 78 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredComponentCache() 79 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredComponentCache() 80 mContext.registerReceiverAsUser(receiver, UserHandle.ALL, sdFilter, null, null); in RegisteredComponentCache()
|
/packages/apps/Settings/src/com/android/settings/applications/appops/ |
D | AppOpsCategory.java | 99 IntentFilter sdFilter = new IntentFilter(); in PackageIntentReceiver() local 100 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in PackageIntentReceiver() 101 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in PackageIntentReceiver() 102 mLoader.getContext().registerReceiver(this, sdFilter); in PackageIntentReceiver()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/applications/appops/ |
D | AppOpsCategory.java | 99 IntentFilter sdFilter = new IntentFilter(); in PackageIntentReceiver() local 100 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in PackageIntentReceiver() 101 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in PackageIntentReceiver() 102 mLoader.getContext().registerReceiver(this, sdFilter); in PackageIntentReceiver()
|
/packages/apps/Contacts/src/com/android/contacts/model/ |
D | AccountTypeManager.java | 394 IntentFilter sdFilter = new IntentFilter(); 395 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); 396 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); 397 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
|
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | AccountTypeManager.java | 296 IntentFilter sdFilter = new IntentFilter(); in AccountTypeManagerImpl() local 297 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in AccountTypeManagerImpl() 298 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in AccountTypeManagerImpl() 299 mContext.registerReceiver(mBroadcastReceiver, sdFilter); in AccountTypeManagerImpl()
|
/packages/apps/Nfc/src/com/android/nfc/cardemulation/ |
D | RegisteredServicesCache.java | 158 IntentFilter sdFilter = new IntentFilter(); in RegisteredServicesCache() local 159 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredServicesCache() 160 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredServicesCache() 161 mContext.registerReceiverAsUser(mReceiver.get(), UserHandle.ALL, sdFilter, null, null); in RegisteredServicesCache() local
|
D | RegisteredNfcFServicesCache.java | 165 IntentFilter sdFilter = new IntentFilter(); in RegisteredNfcFServicesCache() local 166 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredNfcFServicesCache() 167 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredNfcFServicesCache() 168 mContext.registerReceiverAsUser(mReceiver.get(), UserHandle.ALL, sdFilter, null, null); in RegisteredNfcFServicesCache() local
|