Home
last modified time | relevance | path

Searched refs:getParentCall (Results 1 – 10 of 10) sorted by relevance

/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
DCallRecordingTonePlayerTest.java98 when(childCall.getParentCall()).thenReturn(parentcall); in testChildCall()
111 when(call.getParentCall()).thenReturn(null); in testAddExternalCall()
125 when(call.getParentCall()).thenReturn(null); in testAddEmergencyCall()
140 when(call.getParentCall()).thenReturn(null); in testAddIneligibleCall()
267 when(call.getParentCall()).thenReturn(null); in addValidCall()
DBluetoothPhoneServiceTest.java328 when(confCall1.getParentCall()).thenReturn(parentCall); in testConferenceInProgressCDMA()
329 when(confCall2.getParentCall()).thenReturn(parentCall); in testConferenceInProgressCDMA()
377 when(foregroundCall.getParentCall()).thenReturn(parentCall); in testListCurrentCallsCdmaHold()
378 when(heldCall.getParentCall()).thenReturn(parentCall); in testListCurrentCallsCdmaHold()
419 when(confCall1.getParentCall()).thenReturn(parentCall); in testListCurrentCallsCdmaConference()
420 when(confCall2.getParentCall()).thenReturn(parentCall); in testListCurrentCallsCdmaConference()
607 when(childCall1.getParentCall()).thenReturn(parentCall); in testListCurrentCallsHeldImsCepConference()
608 when(childCall2.getParentCall()).thenReturn(parentCall); in testListCurrentCallsHeldImsCepConference()
1025 when(activeCall.getParentCall()).thenReturn(parentCall); in testOnIsConferencedChanged()
1026 when(heldCall.getParentCall()).thenReturn(parentCall); in testOnIsConferencedChanged()
DCallLogManagerTest.java916 when(fakeChild.getParentCall()).thenReturn(fakeConfCall); in testDoNotLogChildOfRemotelyHostedConference()
1004 when(fakeCall.getParentCall()).thenReturn(null); in makeFakeCall()
/packages/services/Telecomm/src/com/android/server/telecom/
DCallAudioManager.java226 return call.getParentCall() != null || call.isExternalCall(); in shouldIgnoreCallForAudio()
307 Call parentCall = call.getParentCall(); in onIsConferencedChanged()
DBluetoothPhoneServiceImpl.java381 if (call.getParentCall() != null) {
599 Call conferenceCall = call.getParentCall(); in sendClccForCall()
DCallRecordingTonePlayer.java157 return call.getParentCall() == null && !call.isExternalCall() && in shouldUseRecordingTone()
DCallsManager.java815 if (call.getParentCall() != null) { in shouldSilenceInsteadOfReject()
3164 } else if (call.getParentCall() == null) {
3210 && call.getParentCall() == null
3220 if (call.getParentCall() == null && call.getState() == CallState.ON_HOLD) {
3273 if (call.getParentCall() != null) {
3739 call.getParentCall() == null && !call.isExternalCall());
3830 && call.getParentCall() == null
DCall.java828 getParentCall() != null, in toString()
945 boolean isChild = getParentCall() != null; in isFocusable()
1841 public Call getParentCall() { in getParentCall() method in Call
DParcelableCallUtils.java179 Call parentCall = call.getParentCall(); in toParcelableCall()
DCallLogManager.java232 if (call.getParentCall() != null && call.hasProperty(Connection.PROPERTY_REMOTELY_HOSTED)) { in shouldLogDisconnectedCall()