Searched refs:isInInvalidMsgState (Results 1 – 7 of 7) sorted by relevance
/packages/apps/Settings/tests/robotests/src/com/android/settings/notification/app/ |
D | InvalidConversationInfoPreferenceControllerTest.java | 93 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable_notIfAppBlocked() 104 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(false); in testIsAvailable_notIfInValidMsgState() 114 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable() 124 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable_filteredIn() 135 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable_filteredOut() 145 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testUpdateState()
|
D | InvalidConversationPreferenceControllerTest.java | 100 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable_notIfAppBlocked() 111 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(false); in testIsAvailable_notIfInValidMsgState() 121 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable() 131 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable_filteredIn() 142 when(mBackend.isInInvalidMsgState(anyString(), anyInt())).thenReturn(true); in testIsAvailable_filteredOut()
|
/packages/apps/Settings/src/com/android/settings/notification/app/ |
D | InvalidConversationInfoPreferenceController.java | 53 return mBackend.isInInvalidMsgState(mAppRow.pkg, mAppRow.uid); in isAvailable()
|
D | InvalidConversationPreferenceController.java | 53 return mBackend.isInInvalidMsgState(mAppRow.pkg, mAppRow.uid); in isAvailable()
|
D | BubblePreferenceController.java | 96 mHasSentInvalidMsg = mBackend.isInInvalidMsgState(mAppRow.pkg, mAppRow.uid); in updateState()
|
D | AppConversationListPreferenceController.java | 74 return mBackend.hasSentValidMsg(mAppRow.pkg, mAppRow.uid) || mBackend.isInInvalidMsgState( in isAvailable()
|
/packages/apps/Settings/src/com/android/settings/notification/ |
D | NotificationBackend.java | 316 public boolean isInInvalidMsgState(String pkg, int uid) { in isInInvalidMsgState() method in NotificationBackend 318 return sINM.isInInvalidMsgState(pkg, uid); in isInInvalidMsgState()
|