Lines Matching refs:findConnectionForAction

2531         onCreateConnectionComplete(findConnectionForAction(callId,  in notifyCreateConnectionComplete()
2555 findConnectionForAction(callId, "abort").onAbort(); in abort()
2561 findConnectionForAction(callId, "answer").onAnswer(videoState); in answerVideo()
2570 findConnectionForAction(callId, "answer").onAnswer(); in answer()
2578 findConnectionForAction(callId, "deflect").onDeflect(address); in deflect()
2584 findConnectionForAction(callId, "reject").onReject(); in reject()
2592 findConnectionForAction(callId, "reject").onReject(rejectWithMessage); in reject()
2597 findConnectionForAction(callId, "reject").onReject(rejectReason); in reject()
2602 findConnectionForAction(callId, "transfer").onTransfer(number, isConfirmationRequired); in transfer()
2607 Connection connection1 = findConnectionForAction(callId, "consultativeTransfer"); in consultativeTransfer()
2608 Connection connection2 = findConnectionForAction(otherCallId, " consultativeTransfer"); in consultativeTransfer()
2614 findConnectionForAction(callId, "silence").onSilence(); in silence()
2620 findConnectionForAction(callId, "disconnect").onDisconnect(); in disconnect()
2629 findConnectionForAction(callId, "hold").onHold(); in hold()
2638 findConnectionForAction(callId, "unhold").onUnhold(); in unhold()
2647 findConnectionForAction(callId, "onCallAudioStateChanged").setCallAudioState( in onCallAudioStateChanged()
2658 findConnectionForAction(callId, "onCallEndpointChanged").setCallEndpoint(callEndpoint); in onCallEndpointChanged()
2668 findConnectionForAction(callId, "onAvailableCallEndpointsChanged") in onAvailableCallEndpointsChanged()
2679 findConnectionForAction(callId, "onMuteStateChanged").setMuteState(isMuted); in onMuteStateChanged()
2688 findConnectionForAction(callId, "onUsingAlternativeUi") in onUsingAlternativeUi()
2696 findConnectionForAction(callId, "onTrackedByNonUiService") in onTrackedByNonUiService()
2704 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit); in playDtmfTone()
2713 findConnectionForAction(callId, "stopDtmfTone").onStopDtmfTone(); in stopDtmfTone()
2723 Connection connection2 = findConnectionForAction(callId2, "conference"); in conference()
2735 Connection connection1 = findConnectionForAction(callId1, "conference"); in conference()
2769 Connection connection = findConnectionForAction(callId, "splitFromConference"); in splitFromConference()
2800 findConnectionForAction(callId, "addConferenceParticipants") in addConferenceParticipants()
2817 Connection connection = findConnectionForAction(callId, "pullExternalCall"); in pullExternalCall()
2834 Connection connection = findConnectionForAction(callId, "sendCallEvent"); in sendCallEvent()
2843 Connection connection = findConnectionForAction(callId, "onCallFilteringCompleted"); in onCallFilteringCompleted()
2856 Connection connection = findConnectionForAction(callId, "notifyHandoverComplete"); in notifyHandoverComplete()
2877 findConnectionForAction(callId, "handleExtrasChanged").handleExtrasChanged(extras); in handleExtrasChanged()
2886 findConnectionForAction(callId, "startRtt").onStartRtt(rttTextStream); in startRtt()
2895 findConnectionForAction(callId, "stopRtt").onStopRtt(); in stopRtt()
2904 findConnectionForAction(callId, "handleRttUpgradeResponse") in handleRttUpgradeResponse()
2913 findConnectionForAction(callId, "stopDtmfTone").onPostDialContinue(proceed); in onPostDialContinue()
3738 private Connection findConnectionForAction(String callId, String action) { in findConnectionForAction() method in ConnectionService