Home
last modified time | relevance | path

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

/aosp12/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
H A DCallLogManagerTest.java888 when(fakeCall.hadChildren()).thenReturn(false); in testDoNotLogConferenceWithNoChildren()
910 when(fakeCall.hadChildren()).thenReturn(true); in testDoNotLogConferenceWithChildren()
932 when(fakeCall.hadChildren()).thenReturn(true); in testLogRemotelyHostedConferenceWithChildren()
955 when(fakeCall.hadChildren()).thenReturn(false); in testLogRemotelyHostedConferenceWithNoChildren()
978 when(fakeConfCall.hadChildren()).thenReturn(true); in testDoNotLogChildOfRemotelyHostedConference()
994 when(fakeChild.hadChildren()).thenReturn(false); in testDoNotLogChildOfRemotelyHostedConference()
1070 when(fakeCall.hadChildren()).thenReturn(true); in makeFakeCall()
/aosp12/packages/services/Telecomm/src/com/android/server/telecom/
H A DCallLogManager.java170 if (call.isConference() && call.hadChildren() && in shouldLogDisconnectedCall()
178 if (call.isConference() && !call.hadChildren() && in shouldLogDisconnectedCall()
H A DCall.java1287 public boolean hadChildren() { in hadChildren() method in Call