Home
last modified time | relevance | path

Searched refs:allowMessagesFrom (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/core/java/android/service/notification/
DZenModeConfig.java180 public int allowMessagesFrom = DEFAULT_SOURCE; field in ZenModeConfig
202 allowMessagesFrom = source.readInt(); in ZenModeConfig()
232 dest.writeInt(allowMessagesFrom); in writeToParcel()
272 .append(",allowMessagesFrom=").append(sourceToString(allowMessagesFrom)) in toString()
335 if (allowMessagesFrom != to.allowMessagesFrom) { in diff()
336 d.addLine("allowMessagesFrom", allowMessagesFrom, to.allowMessagesFrom); in diff()
444 && other.allowMessagesFrom == allowMessagesFrom in equals()
460 allowCallsFrom, allowMessagesFrom, allowReminders, allowEvents, in hashCode()
550 rt.allowMessagesFrom = messagesFrom; in readXml()
554 rt.allowMessagesFrom = from; in readXml()
[all …]
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/
DZenModeConfigTest.java266 config.allowMessagesFrom = ZenModeConfig.SOURCE_ANYONE; in getCustomConfig()
DZenPolicyTest.java614 assertEquals(policy.getPriorityMessageSenders(), proto.allowMessagesFrom); in assertProtoMatches()
/frameworks/base/services/core/java/com/android/server/notification/
DZenModeFiltering.java220 return shouldInterceptAudience(policy.allowMessagesFrom(), record); in shouldIntercept()
DZenModeHelper.java685 ZenModeConfig.sourceToString(config.allowMessagesFrom), in dump()
/frameworks/base/core/java/android/app/
DNotificationManager.java2196 public int allowMessagesFrom() { in allowMessagesFrom() method in NotificationManager.Policy