Searched refs:ownerFilter (Results 1 – 1 of 1) sorted by relevance
528 IntentFilter ownerFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in NfcService() local529 ownerFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in NfcService()530 ownerFilter.addAction(Intent.ACTION_SHUTDOWN); in NfcService()531 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()533 ownerFilter = new IntentFilter(); in NfcService()534 ownerFilter.addAction(Intent.ACTION_PACKAGE_ADDED); in NfcService()535 ownerFilter.addAction(Intent.ACTION_PACKAGE_REMOVED); in NfcService()536 ownerFilter.addDataScheme("package"); in NfcService()537 mContext.registerReceiver(mOwnerReceiver, ownerFilter); in NfcService()