Searched refs:parentCall (Results 1 – 6 of 6) sorted by relevance
302 Call parentCall = createActiveCall(); in testConferenceInProgressCDMA() local305 calls.add(parentCall); in testConferenceInProgressCDMA()317 addCallCapability(parentCall, Connection.CAPABILITY_MERGE_CONFERENCE); in testConferenceInProgressCDMA()318 addCallCapability(parentCall, Connection.CAPABILITY_SWAP_CONFERENCE); in testConferenceInProgressCDMA()319 removeCallCapability(parentCall, Connection.CAPABILITY_CONFERENCE_HAS_NO_CHILDREN); in testConferenceInProgressCDMA()320 when(parentCall.getConferenceLevelActiveCall()).thenReturn(confCall1); in testConferenceInProgressCDMA()321 when(parentCall.isConference()).thenReturn(true); in testConferenceInProgressCDMA()322 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testConferenceInProgressCDMA()327 when(confCall1.getParentCall()).thenReturn(parentCall); in testConferenceInProgressCDMA()328 when(confCall2.getParentCall()).thenReturn(parentCall); in testConferenceInProgressCDMA()[all …]
2405 void setParentAndChildCall(Call parentCall) { in setParentAndChildCall() argument2406 boolean isParentChanging = (mParentCall != parentCall); in setParentAndChildCall()2407 setParentCall(parentCall); in setParentAndChildCall()2408 setChildOf(parentCall); in setParentAndChildCall()2410 notifyParentChanged(parentCall); in setParentAndChildCall()2419 void notifyParentChanged(Call parentCall) { in notifyParentChanged() argument2420 Log.addEvent(this, LogUtils.Events.SET_PARENT, parentCall); in notifyParentChanged()2433 void setParentCall(Call parentCall) { in setParentCall() argument2434 if (parentCall == this) { in setParentCall()2438 if (parentCall == mParentCall) { in setParentCall()[all …]
179 Call parentCall = call.getParentCall(); in toParcelableCall() local180 if (parentCall != null) { in toParcelableCall()181 parentCallId = parentCall.getId(); in toParcelableCall()
3471 private PhoneAccountHandle getFirstChildPhoneAccount(Call parentCall) {3472 for (Call childCall : parentCall.getChildCalls()) {3566 Call parentCall = null;3569 parentCall = mCalls3574 if (parentCall != null) {3577 parentCall.getId());3579 call.setParentCall(parentCall);3583 if (parentCall != null) {3586 call.setChildOf(parentCall);3587 call.notifyParentChanged(parentCall);
299 Call parentCall = call.getParentCall(); in onIsConferencedChanged() local300 if (parentCall == null) { in onIsConferencedChanged()
1054 Call parentCall = telecomCall.getParent(); in getParentId() local1055 if (parentCall != null) { in getParentId()1056 return dialerCallDelegate.getDialerCallFromTelecomCall(parentCall).getId(); in getParentId()