Home
last modified time | relevance | path

Searched refs:offerSdp (Results 1 – 6 of 6) sorted by relevance

/external/webrtc/examples/androidapp/src/org/appspot/apprtc/
DAppRTCClient.java84 public final SessionDescription offerSdp; field in AppRTCClient.SignalingParameters
88 String clientId, String wssUrl, String wssPostUrl, SessionDescription offerSdp, in SignalingParameters() argument
95 this.offerSdp = offerSdp; in SignalingParameters()
DRoomParametersFetcher.java87 SessionDescription offerSdp = null; in roomHttpResponseParse() local
112 offerSdp = new SessionDescription( in roomHttpResponseParse()
151 iceServers, initiator, clientId, wssUrl, wssPostUrl, offerSdp, iceCandidates); in roomHttpResponseParse()
DWebSocketRTCClient.java162 && (!signalingParameters.initiator || signalingParameters.offerSdp != null)) { in signalingParametersReady()
167 && signalingParameters.offerSdp == null) { in signalingParametersReady()
DCallActivity.java762 if (params.offerSdp != null) {
763 peerConnectionClient.setRemoteDescription(params.offerSdp);
/external/webrtc/sdk/android/instrumentationtests/src/org/webrtc/
DPeerConnectionEndToEndTest.java718 SessionDescription offerSdp = sdpLatch.getSdp(); in testCompleteSession() local
719 assertEquals(offerSdp.type, SessionDescription.Type.OFFER); in testCompleteSession()
720 assertFalse(offerSdp.description.isEmpty()); in testCompleteSession()
728 answeringPC.setRemoteDescription(sdpLatch, offerSdp); in testCompleteSession()
761 offeringPC.setLocalDescription(sdpLatch, offerSdp); in testCompleteSession()
788 assertEquals(offeringPC.getLocalDescription().type, offerSdp.type); in testCompleteSession()
791 assertEquals(answeringPC.getRemoteDescription().type, offerSdp.type); in testCompleteSession()
965 SessionDescription offerSdp = sdpLatch.getSdp(); in testDataChannelOnlySession() local
966 assertEquals(offerSdp.type, SessionDescription.Type.OFFER); in testDataChannelOnlySession()
967 assertFalse(offerSdp.description.isEmpty()); in testDataChannelOnlySession()
[all …]
/external/webrtc/examples/androidjunit/src/org/appspot/apprtc/
DDirectRTCClientTest.java128 SessionDescription offerSdp = new SessionDescription(SessionDescription.Type.OFFER, DUMMY_SDP); in testDirectRTCClient() local
129 server.sendOfferSdp(offerSdp); in testDirectRTCClient()