HomeSort by relevance Sort by last modified time
    Searched full:automaticrule (Results 1 - 3 of 3) sorted by null

  /frameworks/base/services/core/java/com/android/server/notification/
ZenModeConditions.java 75 for (ZenRule automaticRule : config.automaticRules.values()) {
76 evaluateRule(automaticRule, current, processSubscriptions);
77 updateSnoozing(automaticRule);
118 for (ZenRule automaticRule : config.automaticRules.values()) {
119 updated |= updateCondition(id, condition, automaticRule);
120 updated |= updateSnoozing(automaticRule);
ZenModeHelper.java 213 for (ZenRule automaticRule : newConfig.automaticRules.values()) {
214 if (automaticRule.isAutomaticActive()) {
215 automaticRule.snoozing = true;
273 for (ZenModeConfig.ZenRule automaticRule : config.automaticRules.values()) {
275 automaticRule.snoozing = false;
276 automaticRule.condition = null;
396 for (ZenRule automaticRule : mConfig.automaticRules.values()) {
397 if (automaticRule.isAutomaticActive()) {
398 if (zenSeverity(automaticRule.zenMode) > zenSeverity(zen)) {
399 zen = automaticRule.zenMode
    [all...]
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 230 ZenRule.appendDiff(d, "automaticRule[" + rule + "]", fromRule, toRule);
416 final ZenRule automaticRule = readRuleXml(parser);
417 if (id != null && automaticRule != null) {
418 rt.automaticRules.put(id, automaticRule);
449 final ZenRule automaticRule = automaticRules.valueAt(i);
452 writeRuleXml(automaticRule, out);
    [all...]

Completed in 63 milliseconds