/external/webrtc/talk/app/webrtc/ |
D | jsep.h | 57 class IceCandidateInterface { 59 virtual ~IceCandidateInterface() {} in ~IceCandidateInterface() 75 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid, 88 virtual bool HasCandidate(const IceCandidateInterface* candidate) const = 0; 89 virtual const IceCandidateInterface* at(size_t index) const = 0; 114 virtual bool AddCandidate(const IceCandidateInterface* candidate) = 0;
|
D | jsepicecandidate.h | 41 class JsepIceCandidate : public IceCandidateInterface { 77 virtual bool HasCandidate(const IceCandidateInterface* candidate) const; 82 virtual const IceCandidateInterface* at(size_t index) const { in at()
|
D | webrtcsdp.h | 44 class IceCandidateInterface; variable 58 std::string SdpSerializeCandidate(const IceCandidateInterface& candidate);
|
D | jsepsessiondescription_unittest.cc | 43 using webrtc::IceCandidateInterface; 143 const IceCandidateInterface* ice_candidate = ice_candidates->at(0); in TEST_F() 160 const IceCandidateInterface* ice_candidate = ice_candidates->at(0); in TEST_F() 177 const IceCandidateInterface* ice_candidate = ice_candidates->at(0); in TEST_F()
|
D | jsepsessiondescription.h | 76 virtual bool AddCandidate(const IceCandidateInterface* candidate); 98 bool GetMediasectionIndex(const IceCandidateInterface* candidate,
|
D | jsepicecandidate.cc | 37 IceCandidateInterface* CreateIceCandidate(const std::string& sdp_mid, in CreateIceCandidate() 85 const IceCandidateInterface* candidate) const { in HasCandidate()
|
D | webrtcsession.h | 98 virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0; 226 bool ProcessIceMessage(const IceCandidateInterface* ice_candidate); 401 bool UseCandidate(const IceCandidateInterface* candidate); 445 bool ReadyToUseRemoteCandidate(const IceCandidateInterface* candidate,
|
D | jsepsessiondescription.cc | 120 const IceCandidateInterface* candidate) { in AddCandidate() 178 const IceCandidateInterface* candidate, in GetMediasectionIndex()
|
D | peerconnectionproxy.h | 72 PROXY_METHOD1(bool, AddIceCandidate, const IceCandidateInterface*)
|
D | peerconnectioninterface.h | 418 virtual bool AddIceCandidate(const IceCandidateInterface* candidate) = 0; 478 virtual void OnIceCandidate(const IceCandidateInterface* candidate) = 0;
|
D | peerconnection.h | 130 bool AddIceCandidate(const IceCandidateInterface* candidate) override; 184 void OnIceCandidate(const IceCandidateInterface* candidate) override;
|
D | webrtcsdp_unittest.cc | 72 using webrtc::IceCandidateInterface; 935 const IceCandidateInterface* c1 = cc1->at(j); in CompareSessionDescription() 936 const IceCandidateInterface* c2 = cc2->at(j); in CompareSessionDescription() 1394 rtc::scoped_ptr<IceCandidateInterface> jcandidate_; 1784 rtc::scoped_ptr<IceCandidateInterface> jcandidate( in TEST_F() 2059 rtc::scoped_ptr<IceCandidateInterface> jcandidate_template( in TEST_F()
|
D | webrtcsession.cc | 1211 bool WebRtcSession::ProcessIceMessage(const IceCandidateInterface* candidate) { in ProcessIceMessage() 1693 const IceCandidateInterface* candidate = candidates->at(n); in UseCandidatesInSessionDescription() 1712 const IceCandidateInterface* candidate) { in UseCandidate() 2042 const IceCandidateInterface* candidate, in ReadyToUseRemoteCandidate()
|
D | peerconnectionfactory_unittest.cc | 97 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate) {} in OnIceCandidate()
|
/external/webrtc/webrtc/api/objc/ |
D | RTCIceCandidate.mm | 45 (webrtc::IceCandidateInterface *)candidate { argument 55 - (rtc::scoped_ptr<webrtc::IceCandidateInterface>)nativeCandidate { 58 webrtc::IceCandidateInterface *candidate = webrtc::CreateIceCandidate( 67 return rtc::scoped_ptr<webrtc::IceCandidateInterface>(candidate);
|
D | RTCIceCandidate+Private.h | 25 rtc::scoped_ptr<webrtc::IceCandidateInterface> nativeCandidate; 32 (webrtc::IceCandidateInterface *)candidate;
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCICECandidate+Internal.h | 35 webrtc::IceCandidateInterface* candidate; 37 - (id)initWithCandidate:(const webrtc::IceCandidateInterface*)candidate;
|
D | RTCICECandidate.mm | 66 - (id)initWithCandidate:(const webrtc::IceCandidateInterface*)candidate { argument 81 - (const webrtc::IceCandidateInterface*)candidate {
|
D | RTCPeerConnectionObserver.h | 69 void OnIceCandidate(const IceCandidateInterface* candidate) override;
|
D | RTCPeerConnectionObserver.mm | 101 const IceCandidateInterface* candidate) {
|
/external/webrtc/webrtc/api/objctests/ |
D | RTCIceCandidateTest.mm | 35 rtc::scoped_ptr<webrtc::IceCandidateInterface> nativeCandidate = 49 webrtc::IceCandidateInterface *nativeCandidate =
|
/external/webrtc/talk/app/webrtc/test/ |
D | peerconnectiontestwrapper.cc | 47 using webrtc::IceCandidateInterface; 122 const IceCandidateInterface* candidate) { in OnIceCandidate() 203 rtc::scoped_ptr<webrtc::IceCandidateInterface> owned_candidate( in AddIceCandidate()
|
D | peerconnectiontestwrapper.h | 67 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate);
|
/external/webrtc/webrtc/examples/peerconnection/client/ |
D | conductor.h | 74 virtual void OnIceCandidate(const webrtc::IceCandidateInterface* candidate);
|
D | conductor.cc | 173 void Conductor::OnIceCandidate(const webrtc::IceCandidateInterface* candidate) { in OnIceCandidate() 311 rtc::scoped_ptr<webrtc::IceCandidateInterface> candidate( in OnMessageFromPeer()
|