Searched refs:getDeletedChannelCount (Results 1 – 5 of 5) sorted by relevance
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/ |
D | DeletedChannelsPreferenceControllerTest.java | 103 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/ |
D | DeletedChannelsPreferenceController.java | 50 return mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid) > 0; in isAvailable() 55 int deletedChannelCount = mBackend.getDeletedChannelCount(mAppRow.pkg, mAppRow.uid); in updateState()
|
D | NotificationBackend.java | 275 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/ |
D | DeletedChannelsPreferenceController.java | 51 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/ |
D | NotificationBackend.java | 337 public int getDeletedChannelCount(String pkg, int uid) { in getDeletedChannelCount() method in NotificationBackend 339 return sINM.getDeletedChannelCount(pkg, uid); in getDeletedChannelCount()
|