Searched refs:sdFilter (Results 1 – 6 of 6) sorted by relevance
/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/experimental/LoaderApp/src/com/android/loaderapp/model/ |
D | Sources.java | 98 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/ |
D | AppOpsCategory.java | 109 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/Nfc/src/com/android/nfc/cardemulation/ |
D | RegisteredServicesCache.java | 156 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
|
D | RegisteredNfcFServicesCache.java | 163 IntentFilter sdFilter = new IntentFilter(); in RegisteredNfcFServicesCache() local 164 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredNfcFServicesCache() 165 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredNfcFServicesCache() 166 mContext.registerReceiverAsUser(mReceiver.get(), UserHandle.ALL, sdFilter, null, null); in RegisteredNfcFServicesCache() local
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/model/ |
D | AccountTypeManager.java | 314 IntentFilter sdFilter = new IntentFilter(); in AccountTypeManagerImpl() local 315 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in AccountTypeManagerImpl() 316 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in AccountTypeManagerImpl() 317 mContext.registerReceiver(mBroadcastReceiver, sdFilter); in AccountTypeManagerImpl()
|