Home
last modified time | relevance | path

Searched refs:allowReminders (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/service/notification/
DZenModeConfig.java117 public boolean allowReminders = DEFAULT_ALLOW_REMINDERS; field in ZenModeConfig
132 allowReminders = source.readInt() == 1; in ZenModeConfig()
155 dest.writeInt(allowReminders ? 1 : 0); in writeToParcel()
186 .append(",allowReminders=").append(allowReminders) in toString()
216 if (allowReminders != to.allowReminders) { in diff()
217 d.addLine("allowReminders", allowReminders, to.allowReminders); in diff()
317 && other.allowReminders == allowReminders in equals()
327 allowMessagesFrom, allowReminders, allowEvents, user, automaticRules, manualRule); in hashCode()
395 rt.allowReminders = safeBoolean(parser, ALLOW_ATT_REMINDERS, in readXml()
435 out.attribute(null, ALLOW_ATT_REMINDERS, Boolean.toString(allowReminders)); in writeXml()
[all …]
/frameworks/base/services/core/java/com/android/server/notification/
DZenModeHelper.java253 config.allowEvents, config.allowReminders); in dump()
555 rt.allowReminders = v1.allowReminders;
DZenModeFiltering.java153 if (!config.allowReminders) { in shouldIntercept()