Lines Matching refs:findConnectionForAction
2191 onCreateConnectionComplete(findConnectionForAction(callId, in notifyCreateConnectionComplete()
2215 findConnectionForAction(callId, "abort").onAbort(); in abort()
2221 findConnectionForAction(callId, "answer").onAnswer(videoState); in answerVideo()
2230 findConnectionForAction(callId, "answer").onAnswer(); in answer()
2238 findConnectionForAction(callId, "deflect").onDeflect(address); in deflect()
2244 findConnectionForAction(callId, "reject").onReject(); in reject()
2252 findConnectionForAction(callId, "reject").onReject(rejectWithMessage); in reject()
2257 findConnectionForAction(callId, "reject").onReject(rejectReason); in reject()
2262 findConnectionForAction(callId, "transfer").onTransfer(number, isConfirmationRequired); in transfer()
2267 Connection connection1 = findConnectionForAction(callId, "consultativeTransfer"); in consultativeTransfer()
2268 Connection connection2 = findConnectionForAction(otherCallId, " consultativeTransfer"); in consultativeTransfer()
2274 findConnectionForAction(callId, "silence").onSilence(); in silence()
2280 findConnectionForAction(callId, "disconnect").onDisconnect(); in disconnect()
2289 findConnectionForAction(callId, "hold").onHold(); in hold()
2298 findConnectionForAction(callId, "unhold").onUnhold(); in unhold()
2307 findConnectionForAction(callId, "onCallAudioStateChanged").setCallAudioState( in onCallAudioStateChanged()
2318 findConnectionForAction(callId, "onUsingAlternativeUi") in onUsingAlternativeUi()
2326 findConnectionForAction(callId, "onTrackedByNonUiService") in onTrackedByNonUiService()
2334 findConnectionForAction(callId, "playDtmfTone").onPlayDtmfTone(digit); in playDtmfTone()
2343 findConnectionForAction(callId, "stopDtmfTone").onStopDtmfTone(); in stopDtmfTone()
2353 Connection connection2 = findConnectionForAction(callId2, "conference"); in conference()
2365 Connection connection1 = findConnectionForAction(callId1, "conference"); in conference()
2399 Connection connection = findConnectionForAction(callId, "splitFromConference"); in splitFromConference()
2430 findConnectionForAction(callId, "addConferenceParticipants") in addConferenceParticipants()
2447 Connection connection = findConnectionForAction(callId, "pullExternalCall"); in pullExternalCall()
2464 Connection connection = findConnectionForAction(callId, "sendCallEvent"); in sendCallEvent()
2473 Connection connection = findConnectionForAction(callId, "onCallFilteringCompleted"); in onCallFilteringCompleted()
2486 Connection connection = findConnectionForAction(callId, "notifyHandoverComplete"); in notifyHandoverComplete()
2507 findConnectionForAction(callId, "handleExtrasChanged").handleExtrasChanged(extras); in handleExtrasChanged()
2516 findConnectionForAction(callId, "startRtt").onStartRtt(rttTextStream); in startRtt()
2525 findConnectionForAction(callId, "stopRtt").onStopRtt(); in stopRtt()
2534 findConnectionForAction(callId, "handleRttUpgradeResponse") in handleRttUpgradeResponse()
2543 findConnectionForAction(callId, "stopDtmfTone").onPostDialContinue(proceed); in onPostDialContinue()
3351 private Connection findConnectionForAction(String callId, String action) { in findConnectionForAction() method in ConnectionService