HomeSort by relevance Sort by last modified time
    Searched refs:IceCandidateInterface (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
RTCICECandidate+Internal.h 35 webrtc::IceCandidateInterface* candidate;
37 - (id)initWithCandidate:(const webrtc::IceCandidateInterface*)candidate;
RTCICECandidate.mm 66 - (id)initWithCandidate:(const webrtc::IceCandidateInterface *)candidate {
75 NSAssert(NO, @"ICECandidateInterface->ToString failed");
81 - (const webrtc::IceCandidateInterface*)candidate {
RTCPeerConnectionObserver.h 72 virtual void OnIceCandidate(const IceCandidateInterface* candidate) OVERRIDE;
RTCPeerConnectionObserver.mm 97 const IceCandidateInterface* candidate) {
RTCPeerConnection.mm 120 const webrtc::IceCandidateInterface *iceCandidate = candidate.candidate;
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.h 44 class IceCandidateInterface;
56 // Serializes the passed in IceCandidateInterface to a SDP string.
58 std::string SdpSerializeCandidate(const IceCandidateInterface& candidate);
jsep.h 57 class IceCandidateInterface {
59 virtual ~IceCandidateInterface() {}
72 // Creates a IceCandidateInterface based on SDP string.
75 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
80 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
93 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0;
94 virtual const IceCandidateInterface* at(size_t index) const = 0;
119 virtual bool AddCandidate(const IceCandidateInterface* candidate) = 0;
jsepicecandidate.h 28 // Implements the IceCandidateInterface.
41 class JsepIceCandidate : public IceCandidateInterface {
77 virtual bool HasCandidate(const IceCandidateInterface* candidate) const;
82 virtual const IceCandidateInterface* at(size_t index) const {
jsepicecandidate.cc 37 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
43 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid,
91 const IceCandidateInterface* candidate) const {
jsepsessiondescription.h 76 virtual bool AddCandidate(const IceCandidateInterface* candidate);
98 bool GetMediasectionIndex(const IceCandidateInterface* candidate,
jsepsessiondescription_unittest.cc 42 using webrtc::IceCandidateInterface;
143 const IceCandidateInterface* ice_candidate = ice_candidates->at(0);
160 const IceCandidateInterface* ice_candidate = ice_candidates->at(0);
177 const IceCandidateInterface* ice_candidate = ice_candidates->at(0);
peerconnectionproxy.h 62 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*)
webrtcsession.h 87 virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0;
147 bool ProcessIceMessage(const IceCandidateInterface* ice_candidate);
247 bool UseCandidate(const IceCandidateInterface* candidate);
291 std::vector<IceCandidateInterface*> saved_candidates_;
jsepsessiondescription.cc 112 const IceCandidateInterface* candidate) {
168 const IceCandidateInterface* candidate,
peerconnection.h 101 virtual bool AddIceCandidate(const IceCandidateInterface* candidate);
145 virtual void OnIceCandidate(const IceCandidateInterface* candidate);
peerconnectioninterface.h 230 virtual bool AddIceCandidate(const IceCandidateInterface* candidate) = 0;
291 virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0;
peerconnection.cc 521 const IceCandidateInterface* ice_candidate) {
694 void PeerConnection::OnIceCandidate(const IceCandidateInterface* candidate) {
697 // TODO(ronghuawu): Make IceCandidateInterface reference counted instead
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/client/
conductor.h 90 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate);
conductor.cc 160 void Conductor::OnIceCandidate(const webrtc::IceCandidateInterface* candidate) {
274 talk_base::scoped_ptr<webrtc::IceCandidateInterface> candidate(
  /external/chromium_org/content/renderer/media/
mock_media_stream_dependency_factory.cc 20 using webrtc::IceCandidateInterface;
308 virtual bool AddCandidate(const IceCandidateInterface* candidate) OVERRIDE {
332 class MockIceCandidate : public IceCandidateInterface {
465 webrtc::IceCandidateInterface*
media_stream_dependency_factory.h 132 virtual webrtc::IceCandidateInterface* CreateIceCandidate(
mock_media_stream_dependency_factory.h 147 virtual webrtc::IceCandidateInterface* CreateIceCandidate(
mock_peer_connection_impl.h 94 const webrtc::IceCandidateInterface* candidate) OVERRIDE;
rtc_peer_connection_handler.h 144 const webrtc::IceCandidateInterface* candidate) OVERRIDE;
mock_peer_connection_impl.cc 17 using webrtc::IceCandidateInterface;
328 const IceCandidateInterface* candidate) {

Completed in 369 milliseconds

1 2