Searched refs:parentCall (Results 1 – 6 of 6) sorted by relevance
303 Call parentCall = createActiveCall(); in testConferenceInProgressCDMA() local306 calls.add(parentCall); in testConferenceInProgressCDMA()318 addCallCapability(parentCall, Connection.CAPABILITY_MERGE_CONFERENCE); in testConferenceInProgressCDMA()319 addCallCapability(parentCall, Connection.CAPABILITY_SWAP_CONFERENCE); in testConferenceInProgressCDMA()320 removeCallCapability(parentCall, Connection.CAPABILITY_CONFERENCE_HAS_NO_CHILDREN); in testConferenceInProgressCDMA()321 when(parentCall.getConferenceLevelActiveCall()).thenReturn(confCall1); in testConferenceInProgressCDMA()322 when(parentCall.isConference()).thenReturn(true); in testConferenceInProgressCDMA()323 when(parentCall.getChildCalls()).thenReturn(new LinkedList<Call>() {{ in testConferenceInProgressCDMA()328 when(confCall1.getParentCall()).thenReturn(parentCall); in testConferenceInProgressCDMA()329 when(confCall2.getParentCall()).thenReturn(parentCall); in testConferenceInProgressCDMA()[all …]
2839 void setParentAndChildCall(Call parentCall) { in setParentAndChildCall() argument2840 boolean isParentChanging = (mParentCall != parentCall); in setParentAndChildCall()2841 setParentCall(parentCall); in setParentAndChildCall()2842 setChildOf(parentCall); in setParentAndChildCall()2844 notifyParentChanged(parentCall); in setParentAndChildCall()2853 void notifyParentChanged(Call parentCall) { in notifyParentChanged() argument2854 Log.addEvent(this, LogUtils.Events.SET_PARENT, parentCall); in notifyParentChanged()2867 void setParentCall(Call parentCall) { in setParentCall() argument2868 if (parentCall == this) { in setParentCall()2872 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()
4127 private PhoneAccountHandle getFirstChildPhoneAccount(Call parentCall) {4128 for (Call childCall : parentCall.getChildCalls()) {4227 Call parentCall = null;4230 parentCall = mCalls4235 if (parentCall != null) {4238 parentCall.getId());4240 call.setParentCall(parentCall);4244 if (parentCall != null) {4247 call.setChildOf(parentCall);4248 call.notifyParentChanged(parentCall);
307 Call parentCall = call.getParentCall(); in onIsConferencedChanged() local308 if (parentCall == null) { in onIsConferencedChanged()
1059 Call parentCall = telecomCall.getParent(); in getParentId() local1060 if (parentCall != null) { in getParentId()1061 return dialerCallDelegate.getDialerCallFromTelecomCall(parentCall).getId(); in getParentId()