HomeSort by relevance Sort by last modified time
    Searched full:addicecandidate (Results 1 - 25 of 28) sorted by null

1 2

  /external/autotest/client/site_tests/video_ChromeRTCHWDecodeUsed/
loopback.html 63 remotePeerConnection.addIceCandidate(new RTCIceCandidate(event.candidate));
68 localPeerConnection.addIceCandidate(new RTCIceCandidate(event.candidate));
  /external/autotest/client/site_tests/video_ChromeRTCHWEncodeUsed/
loopback.html 63 remotePeerConnection.addIceCandidate(new RTCIceCandidate(event.candidate));
68 localPeerConnection.addIceCandidate(new RTCIceCandidate(event.candidate));
  /external/autotest/client/site_tests/video_WebRtcPerf/
loopback.html 63 remotePeerConnection.addIceCandidate(new RTCIceCandidate(event.candidate));
68 localPeerConnection.addIceCandidate(new RTCIceCandidate(event.candidate));
  /external/webrtc/webrtc/tools/loopback_test/
loopback_test.js 40 var origAddIceCandidate = pc.addIceCandidate;
41 pc.addIceCandidate = function (candidate, successCallback,
159 this.addIceCandidate(new RTCIceCandidate(e.candidate),
  /external/webrtc/talk/app/webrtc/
peerconnectionproxy.h 72 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*)
peerconnectioninterface.h 50 // the peerconnection by calling AddIceCandidate.
64 // 6. Provide the remote ice candidates by calling AddIceCandidate.
416 // TODO(ronghuawu): Consider to change this so that the AddIceCandidate will
418 virtual bool AddIceCandidate(const IceCandidateInterface* candidate) = 0;
peerconnection.h 130 bool AddIceCandidate(const IceCandidateInterface* candidate) override;
peerconnection.cc     [all...]
peerconnectioninterface_unittest.cc     [all...]
  /external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc 58 callee, &PeerConnectionTestWrapper::AddIceCandidate);
60 caller, &PeerConnectionTestWrapper::AddIceCandidate);
200 void PeerConnectionTestWrapper::AddIceCandidate(const std::string& sdp_mid,
205 EXPECT_TRUE(peer_connection_->AddIceCandidate(owned_candidate.get()));
peerconnectiontestwrapper.h 78 void AddIceCandidate(const std::string& sdp_mid, int sdp_mline_index,
  /external/webrtc/webrtc/tools/rtcbot/test/
two_way_video_streaming.js 63 this.addIceCandidate(event.candidate,
webrtc_video_streaming.js 56 this.addIceCandidate(event.candidate,
oneWayVideoStreamingWithDownloadingFile.js 60 this.addIceCandidate(event.candidate,
three_bots_video_conference.js 82 this.addIceCandidate(event.candidate,
  /external/webrtc/webrtc/tools/rtcbot/bot/browser/
bot.js 37 expose(obj, pc, "addIceCandidate", { 0: RTCIceCandidate});
  /external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
loopback.html 250 this.remotePeerConnection.addIceCandidate(
256 this.localPeerConnection.addIceCandidate(
  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnection.mm 148 - (BOOL)addICECandidate:(RTCICECandidate*)candidate {
151 return self.peerConnection->AddIceCandidate(iceCandidate.get());
  /external/webrtc/talk/app/webrtc/objctests/
RTCPeerConnectionTest.mm 236 [pcAnswer addICECandidate:candidate];
240 [pcOffer addICECandidate:candidate];
  /external/webrtc/talk/app/webrtc/objc/public/
RTCPeerConnection.h 109 - (BOOL)addICECandidate:(RTCICECandidate *)candidate;
  /external/webrtc/webrtc/examples/peerconnection/client/
conductor.cc 177 if (!peer_connection_->AddIceCandidate(candidate)) {
318 if (!peer_connection_->AddIceCandidate(candidate.get())) {
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 208 public boolean addIceCandidate(IceCandidate candidate) {
  /external/webrtc/talk/app/webrtc/java/testcommon/src/org/webrtc/
PeerConnectionTest.java 668 answeringPC.addIceCandidate(candidate);
674 offeringPC.addIceCandidate(candidate);
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
PeerConnectionClient.java 652 peerConnection.addIceCandidate(candidate);
872 peerConnection.addIceCandidate(candidate);
    [all...]
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppClient.m 530 [_peerConnection addICECandidate:candidateMessage.candidate];

Completed in 938 milliseconds

1 2