Home
last modified time | relevance | path

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

/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/
DDeletedChannelsPreferenceControllerTest.java103 when(mBackend.getDeletedChannelCount(any(), anyInt())).thenReturn(0); in isAvailable_appScreen_notIfNoDeletedChannels()
110 when(mBackend.getDeletedChannelCount(any(), anyInt())).thenReturn(1); in isAvailable_appScreen()
117 when(mBackend.getDeletedChannelCount(any(), anyInt())).thenReturn(1); in updateState()
124 verify(mBackend, times(1)).getDeletedChannelCount(any(), anyInt()); in updateState()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DDeletedChannelsPreferenceController.java50 return mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid) > 0; in isAvailable()
55 int deletedChannelCount = mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid); in updateState()
DNotificationBackend.java275 public int getDeletedChannelCount(String pkg, int uid) { in getDeletedChannelCount() method in NotificationBackend
277 return sINM.getDeletedChannelCount(pkg, uid); in getDeletedChannelCount()
/packages/apps/Settings/src/com/android/settings/notification/app/
DDeletedChannelsPreferenceController.java51 return mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid) > 0; in isAvailable()
56 int deletedChannelCount = mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid); in updateState()
/packages/apps/Settings/src/com/android/settings/notification/
DNotificationBackend.java337 public int getDeletedChannelCount(String pkg, int uid) { in getDeletedChannelCount() method in NotificationBackend
339 return sINM.getDeletedChannelCount(pkg, uid); in getDeletedChannelCount()