/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/people/data/ |
H A D | ConversationInfoTest.java | 87 assertTrue(conversationInfo.isDemoted()); in testBuild() 113 assertFalse(conversationInfo.isDemoted()); in testBuildEmpty()
|
H A D | DataManagerTest.java | 822 assertFalse(conversationInfo.isDemoted()); in testNotificationChannelCreated() 847 assertFalse(conversationInfo.isDemoted()); in testNotificationChannelModified() 876 assertFalse(conversationInfo.isDemoted()); in testNotificationChannelDeleted()
|
/aosp12/packages/apps/Settings/src/com/android/settings/notification/zen/ |
H A D | ZenModePriorityConversationsPreferenceController.java | 153 if (!conversation.getNotificationChannel().isDemoted()) { in updateChannelCounts() 165 if (!conversation.getNotificationChannel().isDemoted()) { in updateChannelCounts()
|
H A D | ZenModeConversationsImagePreferenceController.java | 138 if (!conversation.getNotificationChannel().isDemoted()) { in loadConversations()
|
H A D | ZenModeBypassingAppsPreferenceController.java | 115 if (!TextUtils.isEmpty(channel.getConversationId()) && !channel.isDemoted()) { in updateAppsBypassingDndSummaryText()
|
/aosp12/frameworks/base/services/core/java/com/android/server/notification/ |
H A D | NotificationChannelLoggerImpl.java | 48 /* bool is_conversation_demoted */ channel.isDemoted(), in logNotificationChannel()
|
H A D | PreferencesHelper.java | 709 public void setInvalidMsgAppDemoted(String packageName, int uid, boolean isDemoted) { in setInvalidMsgAppDemoted() argument 712 r.userDemotedMsgApp = isDemoted; in setInvalidMsgAppDemoted() 1424 && !nc.isDemoted() in getConversations() 1471 && !nc.isDemoted()) { in getConversations() 2048 event.writeBoolean(channel.isDemoted()); in pullPackageChannelPreferencesStats()
|
H A D | NotificationRecord.java | 1456 if (mChannel.isDemoted() || mAppDemotedFromConvo) { in isConversation()
|
/aosp12/packages/apps/Settings/src/com/android/settings/notification/app/ |
H A D | ConversationDemotePreferenceController.java | 57 return !TextUtils.isEmpty(mChannel.getConversationId()) && !mChannel.isDemoted(); in isAvailable()
|
H A D | ConversationPromotePreferenceController.java | 57 return !TextUtils.isEmpty(mChannel.getConversationId()) && mChannel.isDemoted(); in isAvailable()
|
H A D | ChannelNotificationSettings.java | 71 if (!TextUtils.isEmpty(mChannel.getConversationId()) && !mChannel.isDemoted()) { in onResume()
|
H A D | AppConversationListPreferenceController.java | 140 if (conversation.getNotificationChannel().isDemoted()) { in populateConversations()
|
H A D | ConversationListPreferenceController.java | 89 if (conversation.getNotificationChannel().isDemoted() in populateConversations()
|
H A D | AppChannelsBypassingDndPreferenceController.java | 236 return channel.getConversationId() != null && !channel.isDemoted(); in isConversation()
|
H A D | ChannelListPreferenceController.java | 255 if (!TextUtils.isEmpty(channel.getConversationId()) && !channel.isDemoted()) { in updateGroupPreferences()
|
H A D | NotificationSettings.java | 277 || mChannel.isDemoted()) { in loadConversation()
|
/aosp12/frameworks/base/core/java/android/app/ |
H A D | NotificationChannel.java | 913 public boolean isDemoted() { in isDemoted() method in NotificationChannel 1113 if (isDemoted()) { in writeXml() 1114 out.attributeBoolean(null, ATT_DEMOTE, isDemoted()); in writeXml() 1269 && isDemoted() == that.isDemoted() in equals()
|
H A D | INotificationManager.aidl | 65 void setInvalidMsgAppDemoted(String pkg, int uid, boolean isDemoted); in setInvalidMsgAppDemoted() argument
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/ |
H A D | ConversationDemotePreferenceControllerTest.java | 147 assertTrue(captor.getValue().isDemoted()); in testHandlePreferenceClick()
|
H A D | ConversationPromotePreferenceControllerTest.java | 150 assertFalse(captor.getValue().isDemoted()); in testHandlePreferenceClick()
|
/aosp12/frameworks/base/services/people/java/com/android/server/people/data/ |
H A D | ConversationInfo.java | 205 public boolean isDemoted() { in isDemoted() method in ConversationInfo 288 if (isDemoted()) { in toString()
|
H A D | DataManager.java | 279 if (conversationInfo == null || conversationInfo.isDemoted()) { in getConversationChannel() 1245 builder.setDemoted(channel.isDemoted()); in onNotificationChannelModified()
|
/aosp12/packages/apps/Settings/src/com/android/settings/notification/ |
H A D | NotificationBackend.java | 334 public void setInvalidMsgAppDemoted(String pkg, int uid, boolean isDemoted) { in setInvalidMsgAppDemoted() argument 336 sINM.setInvalidMsgAppDemoted(pkg, uid, isDemoted); in setInvalidMsgAppDemoted()
|
/aosp12/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/zen/ |
H A D | ZenModeBypassingAppsPreferenceControllerTest.java | 210 when(demotedConversation.isDemoted()).thenReturn(true); in testUpdateBypassingApps_demotedConversation()
|
/aosp12/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
H A D | PreferencesHelperTest.java | 328 assertEquals(expected.isDemoted(), actual.isDemoted()); in compareChannels()
|