Searched refs:getNotificationChannelsBypassingDnd (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/core/java/android/app/ |
D | INotificationManager.aidl | 124 ParceledListSlice getNotificationChannelsBypassingDnd(String pkg, int uid); in getNotificationChannelsBypassingDnd() method
|
/frameworks/base/services/tests/uiservicestests/src/com/android/server/notification/ |
D | PreferencesHelperTest.java | 2489 assertEquals(0, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDndCount_noChannelsBypassing() 2503 assertEquals(0, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDnd_noChannelsForUidBypassing() 2520 assertEquals(1, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDndCount_oneChannelBypassing_groupBlocked() 2527 assertEquals(0, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDndCount_oneChannelBypassing_groupBlocked() 2550 assertEquals(3, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDndCount_multipleChannelsBypassing() 2556 assertEquals(1, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDndCount_multipleChannelsBypassing() 2561 assertEquals(0, mHelper.getNotificationChannelsBypassingDnd(PKG_N_MR1, in testGetChannelsBypassingDndCount_multipleChannelsBypassing()
|
D | NotificationManagerServiceTest.java | 12070 assertThat(mBinderService.getNotificationChannelsBypassingDnd(mPkg, mUid).getList()) 12072 verify(mPreferencesHelper, never()).getNotificationChannelsBypassingDnd(mPkg, mUid); 12127 when(mPreferencesHelper.getNotificationChannelsBypassingDnd("pkg0", mUid)) 12129 when(mPreferencesHelper.getNotificationChannelsBypassingDnd("pkg1", mUid)) 12131 when(mPreferencesHelper.getNotificationChannelsBypassingDnd("pkg2", mUid)) 12184 when(mPreferencesHelper.getNotificationChannelsBypassingDnd("pkg0", mUid)) 12186 when(mPreferencesHelper.getNotificationChannelsBypassingDnd("pkg1", mUid)) 12188 when(mPreferencesHelper.getNotificationChannelsBypassingDnd("pkg2", mUid))
|
/frameworks/base/services/core/java/com/android/server/notification/ |
D | PreferencesHelper.java | 1781 public ParceledListSlice<NotificationChannel> getNotificationChannelsBypassingDnd(String pkg, in getNotificationChannelsBypassingDnd() method in PreferencesHelper
|
D | NotificationManagerService.java | 4530 public ParceledListSlice<NotificationChannel> getNotificationChannelsBypassingDnd( 4536 return mPreferencesHelper.getNotificationChannelsBypassingDnd(pkg, uid); 4552 for (NotificationChannel channel : getNotificationChannelsBypassingDnd(pkg,
|