Home
last modified time | relevance | path

Searched refs:blockedChannelCount (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/applications/appinfo/
DAppNotificationPreferenceControllerTest.java128 appRow.blockedChannelCount = 30; in getNotificationSummary_appBlocked()
138 appRow.blockedChannelCount = 30; in getNotificationSummary_appNotBlockedAllChannelsBlocked()
149 appRow.blockedChannelCount = 30; in getNotificationSummary_appNotBlocked()
166 appRow.blockedChannelCount = 0; in getNotificationSummary_channelsNotBlocked()
180 appRow.blockedChannelCount = 0; in getNotificationSummary_noChannels()
/packages/apps/Settings/src/com/android/settings/applications/appinfo/
DAppNotificationPreferenceController.java105 } else if (appRow.channelCount == appRow.blockedChannelCount) { in getNotificationSummary()
108 if (appRow.blockedChannelCount == 0) { in getNotificationSummary()
115 arguments.put("count", appRow.blockedChannelCount); in getNotificationSummary()
/packages/apps/Settings/src/com/android/settings/spa/notification/
DAppNotificationRepository.kt144 val blockedChannelCount = getBlockedChannelCount(app) in getNotificationSummary() constant
145 if (channelCount == blockedChannelCount) { in getNotificationSummary()
149 if (blockedChannelCount == 0) return frequencySummary in getNotificationSummary()
154 R.string.notifications_categories_off, "count" to blockedChannelCount in getNotificationSummary()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java94 row.blockedChannelCount = getBlockedChannelCount(row.pkg, row.uid); in loadAppRow()
698 public int blockedChannelCount; field in NotificationBackend.AppRow