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

1 2

  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.idl 52 [RaisesException] void addIceCandidate(RTCIceCandidate candidate);
RTCPeerConnection.h 78 void addIceCandidate(RTCIceCandidate*, ExceptionState&);
RTCPeerConnection.cpp 284 void RTCPeerConnection::addIceCandidate(RTCIceCandidate* iceCandidate, ExceptionState& es)
296 bool valid = m_peerHandler->addIceCandidate(iceCandidate->webCandidate());
  /external/chromium_org/third_party/WebKit/public/platform/
WebRTCPeerConnectionHandler.h 63 virtual bool addICECandidate(const WebRTCICECandidate&) = 0;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
peerconnectionproxy.h 62 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*)
peerconnectioninterface.h 50 // the peerconnection by calling AddIceCandidate.
64 // 6. Provide the remote ice candidates by calling AddIceCandidate.
228 // TODO(ronghuawu): Consider to change this so that the AddIceCandidate will
230 virtual bool AddIceCandidate(const IceCandidateInterface* candidate) = 0;
peerconnection.h 101 virtual bool AddIceCandidate(const IceCandidateInterface* candidate);
  /external/chromium_org/ppapi/examples/video_effects/
video_effects.html 186 pc2.addIceCandidate(new RTCIceCandidate(event.candidate));
193 pc1.addIceCandidate(new RTCIceCandidate(event.candidate));
  /external/chromium_org/third_party/WebKit/Source/core/platform/mediastream/
RTCPeerConnectionHandler.cpp 121 bool RTCPeerConnectionHandler::addIceCandidate(WebKit::WebRTCICECandidate iceCandidate)
123 return m_webHandler->addICECandidate(iceCandidate);
RTCPeerConnectionHandler.h 76 bool addIceCandidate(WebKit::WebRTCICECandidate);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCPeerConnection.mm 119 - (BOOL)addICECandidate:(RTCICECandidate *)candidate {
121 return self.peerConnection->AddIceCandidate(iceCandidate);
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objctests/
RTCPeerConnectionTest.mm 210 [pcAnswer addICECandidate:candidate];
214 [pcOffer addICECandidate:candidate];
  /external/chromium_org/content/renderer/media/
mock_peer_connection_impl.h 93 virtual bool AddIceCandidate(
rtc_peer_connection_handler.h 119 virtual bool addICECandidate(
mock_peer_connection_impl.cc 327 bool MockPeerConnectionImpl::AddIceCandidate(
peer_connection_tracker.cc 349 source == SOURCE_LOCAL ? "onIceCandidate" : "addIceCandidate", value);
rtc_peer_connection_handler.cc 502 bool RTCPeerConnectionHandler::addICECandidate(
515 native_peer_connection_->AddIceCandidate(native_candidate.get());
rtc_peer_connection_handler_unittest.cc 397 TEST_F(RTCPeerConnectionHandlerTest, addICECandidate) {
405 EXPECT_TRUE(pc_handler_->addICECandidate(candidate));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/runner/
MockWebRTCPeerConnectionHandler.h 62 virtual bool addICECandidate(const WebKit::WebRTCICECandidate&) OVERRIDE;
MockWebRTCPeerConnectionHandler.cpp 249 bool MockWebRTCPeerConnectionHandler::addICECandidate(const WebRTCICECandidate& iceCandidate)
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCPeerConnection.h 97 - (BOOL)addICECandidate:(RTCICECandidate *)candidate;
  /external/chromium_org/third_party/libjingle/source/talk/examples/ios/AppRTCDemo/
APPRTCAppDelegate.m 256 [self.peerConnection addICECandidate:candidate];
345 [self.peerConnection addICECandidate:candidate];
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/
PeerConnection.java 142 public boolean addIceCandidate(IceCandidate candidate) {
  /external/chromium_org/content/test/data/media/
peerconnection-call.html 398 gSecondConnection.addIceCandidate(candidate);
405 gFirstConnection.addIceCandidate(candidate);
  /external/chromium_org/third_party/libjingle/source/talk/examples/android/src/org/appspot/apprtc/
AppRTCDemoActivity.java 415 pc.addIceCandidate(candidate);
444 pc.addIceCandidate(candidate);

Completed in 396 milliseconds

1 2