HomeSort by relevance Sort by last modified time
    Searched refs:allowRepeatCallers (Results 1 - 5 of 5) sorted by null

  /packages/apps/Settings/src/com/android/settings/notification/
ZenModePrioritySettings.java 140 if (val == mConfig.allowRepeatCallers) return true;
141 if (DEBUG) Log.d(TAG, "onPrefChange allowRepeatCallers=" + val);
143 newConfig.allowRepeatCallers = val;
169 mRepeatCallers.setChecked(mConfig.allowRepeatCallers);
ZenModeSettings.java 80 final boolean callers = mConfig.allowCalls || mConfig.allowRepeatCallers;
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 115 public boolean allowRepeatCallers = DEFAULT_ALLOW_REPEAT_CALLERS;
130 allowRepeatCallers = source.readInt() == 1;
153 dest.writeInt(allowRepeatCallers ? 1 : 0);
182 .append(",allowRepeatCallers=").append(allowRepeatCallers)
204 if (allowRepeatCallers != to.allowRepeatCallers) {
205 d.addLine("allowRepeatCallers", allowRepeatCallers, to.allowRepeatCallers);
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeFiltering.java 84 if (config.allowRepeatCallers && REPEAT_CALLERS.isRepeat(context, extras)) return true;
127 if (config.allowRepeatCallers
ZenModeHelper.java 251 config.allowCalls, config.allowCallsFrom, config.allowRepeatCallers,
414 final boolean muteCalls = zen && !mConfig.allowCalls && !mConfig.allowRepeatCallers

Completed in 117 milliseconds