Home
last modified time | relevance | path

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

/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/zen/
H A DZenModeSystemPreferenceControllerTest.java123 verify(mBackend).saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_SYSTEM, in onPreferenceChanged_EnableSystem()
131 verify(mBackend).saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_SYSTEM, in onPreferenceChanged_DisableSystem()
H A DZenModeAlarmsPreferenceControllerTest.java130 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_ALARMS, allowAlarms); in onPreferenceChanged_EnableAlarms()
139 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_ALARMS, allowAlarms); in onPreferenceChanged_DisableAlarms()
H A DZenModeEventsPreferenceControllerTest.java129 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_EVENTS, allow); in onPreferenceChanged_EnableEvents()
138 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_EVENTS, allow); in onPreferenceChanged_DisableEvents()
H A DZenModeRemindersPreferenceControllerTest.java131 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_REMINDERS, allow); in onPreferenceChanged_EnableReminders()
140 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_REMINDERS, allow); in onPreferenceChanged_DisableReminders()
H A DZenModeMediaPreferenceControllerTest.java129 verify(mBackend).saveSoundPolicy( in onPreferenceChanged_EnableEvents()
138 verify(mBackend).saveSoundPolicy( in onPreferenceChanged_DisableEvents()
H A DZenModeRepeatCallersPreferenceControllerTest.java146 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_REPEAT_CALLERS, in onPreferenceChanged_EnableRepeatCallers()
156 .saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_REPEAT_CALLERS, in onPreferenceChanged_DisableRepeatCallers()
/aosp12/packages/apps/Settings/src/com/android/settings/notification/zen/
H A DZenModeEventsPreferenceController.java75 mBackend.saveSoundPolicy(Policy.PRIORITY_CATEGORY_EVENTS, allowEvents); in onPreferenceChange()
H A DZenModeMediaPreferenceController.java77 mBackend.saveSoundPolicy(Policy.PRIORITY_CATEGORY_MEDIA, allowMedia); in onPreferenceChange()
H A DZenModeRemindersPreferenceController.java75 mBackend.saveSoundPolicy(NotificationManager.Policy.PRIORITY_CATEGORY_REMINDERS, in onPreferenceChange()
H A DZenModeAlarmsPreferenceController.java80 mBackend.saveSoundPolicy(Policy.PRIORITY_CATEGORY_ALARMS, allowAlarms); in onPreferenceChange()
H A DZenModeSystemPreferenceController.java79 mBackend.saveSoundPolicy(Policy.PRIORITY_CATEGORY_SYSTEM, allowSystem); in onPreferenceChange()
H A DZenModeRepeatCallersPreferenceController.java99 mBackend.saveSoundPolicy(Policy.PRIORITY_CATEGORY_REPEAT_CALLERS, allowRepeatCallers); in onPreferenceChange()
H A DZenModeBackend.java171 protected void saveSoundPolicy(int category, boolean allow) { in saveSoundPolicy() method in ZenModeBackend