Home
last modified time | relevance | path

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

/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java491 IntentFilter ownerFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in NfcService() local
492 ownerFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in NfcService()
493 ownerFilter.addAction(Intent.ACTION_SHUTDOWN); in NfcService()
494 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()
496 ownerFilter = new IntentFilter(); in NfcService()
497 ownerFilter.addAction(Intent.ACTION_PACKAGE_ADDED); in NfcService()
498 ownerFilter.addAction(Intent.ACTION_PACKAGE_REMOVED); in NfcService()
499 ownerFilter.addDataScheme("package"); in NfcService()
500 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()