HomeSort by relevance Sort by last modified time
    Searched full:offersdp (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
AppRTCClient.java 75 public final SessionDescription offerSdp;
82 SessionDescription offerSdp, List<IceCandidate> iceCandidates) {
88 this.offerSdp = offerSdp;
RoomParametersFetcher.java 91 SessionDescription offerSdp = null;
116 offerSdp = new SessionDescription(
158 offerSdp, iceCandidates);
WebSocketRTCClient.java 159 || signalingParameters.offerSdp != null)) {
165 && signalingParameters.offerSdp == null) {
CallActivity.java 501 if (params.offerSdp != null) {
502 peerConnectionClient.setRemoteDescription(params.offerSdp);
  /external/webrtc/talk/app/webrtc/objctests/
RTCPeerConnectionTest.mm 158 RTCSessionDescription* offerSDP = sdpObserver.sessionDescription;
159 EXPECT_EQ([@"offer" compare:offerSDP.type options:NSCaseInsensitiveSearch],
161 EXPECT_GT([offerSDP.description length], 0);
167 sessionDescription:offerSDP];
202 sessionDescription:offerSDP];
229 EXPECT_TRUE([offerSDP.type isEqual:pcOffer.localDescription.type]);
231 EXPECT_TRUE([offerSDP.type isEqual:pcAnswer.remoteDescription.type]);
  /external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java 575 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);
  /external/webrtc/webrtc/examples/androidtests/src/org/appspot/apprtc/test/
PeerConnectionClientTest.java 234 null, null); // offerSdp, iceCandidates.

Completed in 347 milliseconds