Home
last modified time | relevance | path

Searched refs:setShowBadge (Results 1 – 7 of 7) sorted by relevance

/packages/apps/Dialer/java/com/android/dialer/notification/
DNotificationChannelManager.java123 channel.setShowBadge(false); in createIncomingCallChannel()
137 channel.setShowBadge(false); in createOngoingCallChannel()
151 channel.setShowBadge(true); in createMissedCallChannel()
165 channel.setShowBadge(false); in createDefaultChannel()
DVoicemailChannelUtils.java226 channel.setShowBadge(true); in newChannel()
/packages/apps/Settings/src/com/android/settings/notification/app/
DBadgePreferenceController.java93 mChannel.setShowBadge(showBadge); in onPreferenceChange()
97 mBackend.setShowBadge(mAppRow.pkg, mAppRow.uid, showBadge); in onPreferenceChange()
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
DBadgePreferenceControllerTest.java276 channel.setShowBadge(false); in testOnPreferenceChange_on_channel()
295 channel.setShowBadge(true); in testOnPreferenceChange_off_channel()
322 verify(mBackend, times(1)).setShowBadge(any(), anyInt(), eq(true)); in testOnPreferenceChange_on_app()
339 verify(mBackend, times(1)).setShowBadge(any(), anyInt(), eq(false)); in testOnPreferenceChange_off_app()
/packages/services/Telecomm/src/com/android/server/telecom/ui/
DNotificationChannelManager.java133 channel.setShowBadge(canShowBadge); in createChannel()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java222 public boolean setShowBadge(String pkg, int uid, boolean showBadge) { in setShowBadge() method in NotificationBackend
224 sINM.setShowBadge(pkg, uid, showBadge); in setShowBadge()
/packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
DSelfManagedCallingActivity.java299 channel.setShowBadge(false); in configureNotificationChannel()