Home
last modified time | relevance | path

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

/frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
DRemoteBugreportManager.java238 final IntentFilter filterConsent = new IntentFilter(); in registerRemoteBugreportReceivers() local
239 filterConsent.addAction(ACTION_BUGREPORT_SHARING_DECLINED); in registerRemoteBugreportReceivers()
240 filterConsent.addAction(ACTION_BUGREPORT_SHARING_ACCEPTED); in registerRemoteBugreportReceivers()
241 mContext.registerReceiver(mRemoteBugreportConsentReceiver, filterConsent); in registerRemoteBugreportReceivers()
333 final IntentFilter filterConsent = new IntentFilter(); in checkForPendingBugreportAfterBoot() local
334 filterConsent.addAction(ACTION_BUGREPORT_SHARING_DECLINED); in checkForPendingBugreportAfterBoot()
335 filterConsent.addAction(ACTION_BUGREPORT_SHARING_ACCEPTED); in checkForPendingBugreportAfterBoot()
336 mContext.registerReceiver(mRemoteBugreportConsentReceiver, filterConsent); in checkForPendingBugreportAfterBoot()
/frameworks/base/core/java/android/os/
DRecoverySystem.java1031 IntentFilter filterConsent = new IntentFilter(); in wipeEuiccData() local
1032 filterConsent.addAction(ACTION_EUICC_FACTORY_RESET); in wipeEuiccData()
1037 .registerReceiver(euiccWipeFinishReceiver, filterConsent, null, euiccHandler); in wipeEuiccData()