Searched refs:allowRepeatCallers (Results 1 – 3 of 3) sorted by relevance
/frameworks/base/core/java/android/service/notification/ |
D | ZenModeConfig.java | 115 public boolean allowRepeatCallers = DEFAULT_ALLOW_REPEAT_CALLERS; field in ZenModeConfig 130 allowRepeatCallers = source.readInt() == 1; in ZenModeConfig() 153 dest.writeInt(allowRepeatCallers ? 1 : 0); in writeToParcel() 182 .append(",allowRepeatCallers=").append(allowRepeatCallers) in toString() 204 if (allowRepeatCallers != to.allowRepeatCallers) { in diff() 205 d.addLine("allowRepeatCallers", allowRepeatCallers, to.allowRepeatCallers); in diff() 313 && other.allowRepeatCallers == allowRepeatCallers in equals() 326 return Objects.hash(allowCalls, allowRepeatCallers, allowMessages, allowCallsFrom, in hashCode() 392 rt.allowRepeatCallers = safeBoolean(parser, ALLOW_ATT_REPEAT_CALLERS, in readXml() 433 out.attribute(null, ALLOW_ATT_REPEAT_CALLERS, Boolean.toString(allowRepeatCallers)); in writeXml() [all …]
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | ZenModeFiltering.java | 84 if (config.allowRepeatCallers && REPEAT_CALLERS.isRepeat(context, extras)) return true; in matchesCallFilter() 127 if (config.allowRepeatCallers in shouldIntercept()
|
D | ZenModeHelper.java | 251 config.allowCalls, config.allowCallsFrom, config.allowRepeatCallers, in dump() 414 final boolean muteCalls = zen && !mConfig.allowCalls && !mConfig.allowRepeatCallers in applyRestrictions()
|