Home
last modified time | relevance | path

Searched refs:getDeletedChannelCount (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
DDeletedChannelsPreferenceControllerTest.java106 when(mBackend.getDeletedChannelCount(any(), anyInt())).thenReturn(0); in isAvailable_appScreen_notIfNoDeletedChannels()
113 when(mBackend.getDeletedChannelCount(any(), anyInt())).thenReturn(1); in isAvailable_appScreen()
121 when(mBackend.getDeletedChannelCount(any(), anyInt())).thenReturn(1); in updateState()
128 verify(mBackend, times(1)).getDeletedChannelCount(any(), anyInt()); in updateState()
/packages/apps/Settings/src/com/android/settings/notification/app/
DDeletedChannelsPreferenceController.java51 return mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid) > 0; in isAvailable()
61 int deletedChannelCount = mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid); in updateState()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java371 public int getDeletedChannelCount(String pkg, int uid) { in getDeletedChannelCount() method in NotificationBackend
373 return sINM.getDeletedChannelCount(pkg, uid); in getDeletedChannelCount()