Home
last modified time | relevance | path

Searched refs:shouldLogDisconnectedCall (Results 1 – 2 of 2) sorted by relevance

/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallLogManagerTest.java890 assertFalse(mCallLogManager.shouldLogDisconnectedCall(fakeCall, CallState.DISCONNECTED, in testDoNotLogConferenceWithNoChildren()
912 assertFalse(mCallLogManager.shouldLogDisconnectedCall(fakeCall, CallState.DISCONNECTED, in testDoNotLogConferenceWithChildren()
935 assertTrue(mCallLogManager.shouldLogDisconnectedCall(fakeCall, CallState.DISCONNECTED, in testLogRemotelyHostedConferenceWithChildren()
958 assertTrue(mCallLogManager.shouldLogDisconnectedCall(fakeCall, CallState.DISCONNECTED, in testLogRemotelyHostedConferenceWithNoChildren()
998 assertFalse(mCallLogManager.shouldLogDisconnectedCall(fakeChild, CallState.DISCONNECTED, in testDoNotLogChildOfRemotelyHostedConference()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallLogManager.java127 if (shouldLogDisconnectedCall(call, oldState, isCallCanceled)) { in onCallStateChanged()
160 public boolean shouldLogDisconnectedCall(Call call, int oldState, boolean isCallCanceled) { in shouldLogDisconnectedCall() method in CallLogManager