Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/notification/
DSoundWorkSettingsController.java124 IntentFilter managedProfileFilter = new IntentFilter(); in onResume() local
125 managedProfileFilter.addAction(Intent.ACTION_MANAGED_PROFILE_ADDED); in onResume()
126 managedProfileFilter.addAction(Intent.ACTION_MANAGED_PROFILE_REMOVED); in onResume()
127 mContext.registerReceiver(mManagedProfileReceiver, managedProfileFilter); in onResume()
/packages/apps/Nfc/src/com/android/nfc/
DNfcService.java775 IntentFilter managedProfileFilter = new IntentFilter(); in NfcService() local
776 managedProfileFilter.addAction(Intent.ACTION_MANAGED_PROFILE_ADDED); in NfcService()
777 managedProfileFilter.addAction(Intent.ACTION_MANAGED_PROFILE_REMOVED); in NfcService()
778 managedProfileFilter.addAction(Intent.ACTION_MANAGED_PROFILE_AVAILABLE); in NfcService()
779 managedProfileFilter.addAction(Intent.ACTION_MANAGED_PROFILE_UNAVAILABLE); in NfcService()
781 managedProfileFilter, null, null); in NfcService()