Searched refs:ownerFilter (Results 1 – 1 of 1) sorted by relevance
783 IntentFilter ownerFilter = new IntentFilter(Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE); in NfcService() local784 ownerFilter.addAction(Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE); in NfcService()785 ownerFilter.addAction(Intent.ACTION_SHUTDOWN); in NfcService()786 mContext.registerReceiverForAllUsers(mOwnerReceiver, ownerFilter, null, null); in NfcService()788 ownerFilter = new IntentFilter(); in NfcService()789 ownerFilter.addAction(Intent.ACTION_PACKAGE_ADDED); in NfcService()790 ownerFilter.addAction(Intent.ACTION_PACKAGE_REMOVED); in NfcService()791 ownerFilter.addDataScheme("package"); in NfcService()792 mContext.registerReceiverForAllUsers(mOwnerReceiver, ownerFilter, null, null); in NfcService()