Lines Matching refs:findConnectionForAction

797         findConnectionForAction(callId, "abort").onAbort();  in abort()
802 findConnectionForAction(callId, "answer").onAnswer(videoState); in answerVideo()
807 findConnectionForAction(callId, "answer").onAnswer(); in answer()
812 findConnectionForAction(callId, "reject").onReject(); in reject()
817 findConnectionForAction(callId, "reject").onReject(rejectWithMessage); in reject()
822 findConnectionForAction(callId, "silence").onSilence(); in silence()
828 findConnectionForAction(callId, "disconnect").onDisconnect(); in disconnect()
837 findConnectionForAction(callId, "hold").onHold(); in hold()
846 findConnectionForAction(callId, "unhold").onUnhold(); in unhold()
855 findConnectionForAction(callId, "onCallAudioStateChanged").setCallAudioState( in onCallAudioStateChanged()
866 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit); in playDtmfTone()
875 findConnectionForAction(callId, "stopDtmfTone").onStopDtmfTone(); in stopDtmfTone()
885 Connection connection2 = findConnectionForAction(callId2, "conference"); in conference()
897 Connection connection1 = findConnectionForAction(callId1, "conference"); in conference()
931 Connection connection = findConnectionForAction(callId, "splitFromConference"); in splitFromConference()
968 Connection connection = findConnectionForAction(callId, "pullExternalCall"); in pullExternalCall()
985 Connection connection = findConnectionForAction(callId, "sendCallEvent"); in sendCallEvent()
1007 findConnectionForAction(callId, "handleExtrasChanged").handleExtrasChanged(extras); in handleExtrasChanged()
1015 findConnectionForAction(callId, "stopDtmfTone").onPostDialContinue(proceed); in onPostDialContinue()
1408 private Connection findConnectionForAction(String callId, String action) { in findConnectionForAction() method in ConnectionService