Searched refs:parentCall (Results 1 – 6 of 6) sorted by relevance
362 BluetoothCall parentCall = createActiveCall(UUID.randomUUID()); in testConferenceInProgressCDMA() local365 calls.add(parentCall); in testConferenceInProgressCDMA()368 mBluetoothInCallService.onCallAdded(parentCall); in testConferenceInProgressCDMA()381 addCallCapability(parentCall, Connection.CAPABILITY_MERGE_CONFERENCE); in testConferenceInProgressCDMA()382 addCallCapability(parentCall, Connection.CAPABILITY_SWAP_CONFERENCE); in testConferenceInProgressCDMA()383 removeCallCapability(parentCall, Connection.CAPABILITY_CONFERENCE_HAS_NO_CHILDREN); in testConferenceInProgressCDMA()385 when(parentCall.getGenericConferenceActiveChildCallId()).thenReturn(confCall1Id); in testConferenceInProgressCDMA()386 when(parentCall.isConference()).thenReturn(true); in testConferenceInProgressCDMA()388 when(parentCall.getChildrenIds()).thenReturn(childrenIds); in testConferenceInProgressCDMA()390 Integer parentId = parentCall.getId(); in testConferenceInProgressCDMA()[all …]
3592 void setParentAndChildCall(Call parentCall) { in setParentAndChildCall() argument3593 boolean isParentChanging = (mParentCall != parentCall); in setParentAndChildCall()3594 setParentCall(parentCall); in setParentAndChildCall()3595 setChildOf(parentCall); in setParentAndChildCall()3597 notifyParentChanged(parentCall); in setParentAndChildCall()3606 void notifyParentChanged(Call parentCall) { in notifyParentChanged() argument3607 Log.addEvent(this, LogUtils.Events.SET_PARENT, parentCall); in notifyParentChanged()3620 void setParentCall(Call parentCall) { in setParentCall() argument3621 if (parentCall == this) { in setParentCall()3625 if (parentCall == mParentCall) { in setParentCall()[all …]
186 Call parentCall = call.getParentCall(); in toParcelableCall() local187 if (parentCall != null) { in toParcelableCall()188 parentCallId = parentCall.getId(); in toParcelableCall()
372 Call parentCall = call.getParentCall(); in onIsConferencedChanged() local373 if (parentCall == null) { in onIsConferencedChanged()
5463 private PhoneAccountHandle getFirstChildPhoneAccount(Call parentCall) {5464 for (Call childCall : parentCall.getChildCalls()) {5595 Call parentCall = null;5598 parentCall = mCalls5603 if (parentCall != null) {5606 parentCall.getId());5608 call.setParentCall(parentCall);5615 if (parentCall != null) {5618 call.setChildOf(parentCall);5619 call.notifyParentChanged(parentCall);
1059 Call parentCall = telecomCall.getParent(); in getParentId() local1060 if (parentCall != null) { in getParentId()1061 return dialerCallDelegate.getDialerCallFromTelecomCall(parentCall).getId(); in getParentId()