Home
last modified time | relevance | path

Searched refs:sdFilter (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Nfc/src/com/android/nfc/
DRegisteredComponentCache.java77 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/experimental/LoaderApp/src/com/android/loaderapp/model/
DSources.java98 IntentFilter sdFilter = new IntentFilter(); in Sources() local
99 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in Sources()
100 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in Sources()
101 mApplicationContext.registerReceiver(this, sdFilter); in Sources()
/packages/apps/Settings/src/com/android/settings/applications/
DAppOpsCategory.java109 IntentFilter sdFilter = new IntentFilter(); in PackageIntentReceiver() local
110 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in PackageIntentReceiver()
111 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in PackageIntentReceiver()
112 mLoader.getContext().registerReceiver(this, sdFilter); in PackageIntentReceiver()
/packages/apps/Contacts/src/com/android/contacts/model/
DAccountTypeManager.java393 IntentFilter sdFilter = new IntentFilter();
394 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE);
395 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE);
396 mContext.registerReceiver(mBroadcastReceiver, sdFilter);
/packages/apps/Nfc/src/com/android/nfc/cardemulation/
DRegisteredServicesCache.java156 IntentFilter sdFilter = new IntentFilter(); in RegisteredServicesCache() local
157 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredServicesCache()
158 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredServicesCache()
159 mContext.registerReceiverAsUser(mReceiver.get(), UserHandle.ALL, sdFilter, null, null); in RegisteredServicesCache() local
DRegisteredNfcFServicesCache.java164 IntentFilter sdFilter = new IntentFilter(); in RegisteredNfcFServicesCache() local
165 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredNfcFServicesCache()
166 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredNfcFServicesCache()
167 mContext.registerReceiverAsUser(mReceiver.get(), UserHandle.ALL, sdFilter, null, null); in RegisteredNfcFServicesCache() local
/packages/apps/Dialer/java/com/android/contacts/common/model/
DAccountTypeManager.java296 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()