Home
last modified time | relevance | path

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

/packages/apps/Nfc/src/com/android/nfc/
DRegisteredComponentCache.java75 IntentFilter sdFilter = new IntentFilter(); in RegisteredComponentCache() local
76 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in RegisteredComponentCache()
77 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in RegisteredComponentCache()
78 mContext.registerReceiver(receiver, sdFilter); 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/Contacts/src/com/android/contacts/model/
DAccountTypeManager.java281 IntentFilter sdFilter = new IntentFilter(); in AccountTypeManagerImpl() local
282 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in AccountTypeManagerImpl()
283 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in AccountTypeManagerImpl()
284 mContext.registerReceiver(mBroadcastReceiver, sdFilter); in AccountTypeManagerImpl()
/packages/apps/Settings/src/com/android/settings/applications/
DApplicationsState.java260 IntentFilter sdFilter = new IntentFilter(); in registerReceiver() local
261 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in registerReceiver()
262 sdFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in registerReceiver()
263 mContext.registerReceiver(this, sdFilter); in registerReceiver()