Searched refs:offerSdp (Results 1 - 5 of 5) sorted by relevance

/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DAppRTCClient.java75 public final SessionDescription offerSdp; field in class:AppRTCClient.SignalingParameters
82 SessionDescription offerSdp, List<IceCandidate> iceCandidates) {
88 this.offerSdp = offerSdp;
78 SignalingParameters( List<PeerConnection.IceServer> iceServers, boolean initiator, String clientId, String wssUrl, String wssPostUrl, SessionDescription offerSdp, List<IceCandidate> iceCandidates) argument
H A DRoomParametersFetcher.java91 SessionDescription offerSdp = null;
116 offerSdp = new SessionDescription(
158 offerSdp, iceCandidates);
H A DWebSocketRTCClient.java159 || signalingParameters.offerSdp != null)) {
165 && signalingParameters.offerSdp == null) {
H A DCallActivity.java501 if (params.offerSdp != null) {
502 peerConnectionClient.setRemoteDescription(params.offerSdp);
/external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
H A DPeerConnectionTest.java575 SessionDescription offerSdp = sdpLatch.getSdp();
576 assertEquals(offerSdp.type, SessionDescription.Type.OFFER);
577 assertFalse(offerSdp.description.isEmpty());
586 answeringPC.setRemoteDescription(sdpLatch, offerSdp);
618 offeringPC.setLocalDescription(sdpLatch, offerSdp);
643 assertEquals(offeringPC.getLocalDescription().type, offerSdp.type);
646 assertEquals(answeringPC.getRemoteDescription().type, offerSdp.type);

Completed in 2623 milliseconds