OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IceCandidateInterface
(Results
1 - 25
of
33
) sorted by null
1
2
/external/webrtc/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
69
void OnIceCandidate(const
IceCandidateInterface
* candidate) override;
RTCPeerConnectionObserver.mm
101
const
IceCandidateInterface
* candidate) {
RTCPeerConnection.mm
149
rtc::scoped_ptr<const webrtc::
IceCandidateInterface
> iceCandidate(
/external/webrtc/webrtc/api/objc/
RTCIceCandidate+Private.h
21
* The native
IceCandidateInterface
representation of this RTCIceCandidate
25
rtc::scoped_ptr<webrtc::
IceCandidateInterface
> nativeCandidate;
28
* Initialize an RTCIceCandidate from a native
IceCandidateInterface
. No
32
(webrtc::
IceCandidateInterface
*)candidate;
RTCIceCandidate.mm
45
(webrtc::
IceCandidateInterface
*)candidate {
55
- (rtc::scoped_ptr<webrtc::
IceCandidateInterface
>)nativeCandidate {
58
webrtc::
IceCandidateInterface
*candidate = webrtc::CreateIceCandidate(
67
return rtc::scoped_ptr<webrtc::
IceCandidateInterface
>(candidate);
/external/webrtc/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,
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;
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,
85
const
IceCandidateInterface
* candidate) const {
jsepsessiondescription.h
76
virtual bool AddCandidate(const
IceCandidateInterface
* candidate);
98
bool GetMediasectionIndex(const
IceCandidateInterface
* candidate,
jsepsessiondescription_unittest.cc
43
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
72
PROXY_METHOD1(bool, AddIceCandidate, const
IceCandidateInterface
*)
jsepsessiondescription.cc
120
const
IceCandidateInterface
* candidate) {
178
const
IceCandidateInterface
* candidate,
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,
peerconnectioninterface.h
418
virtual bool AddIceCandidate(const
IceCandidateInterface
* candidate) = 0;
478
virtual void OnIceCandidate(const
IceCandidateInterface
* candidate) = 0;
peerconnection.h
130
bool AddIceCandidate(const
IceCandidateInterface
* candidate) override;
184
void OnIceCandidate(const
IceCandidateInterface
* candidate) override;
webrtcsdp_unittest.cc
72
using webrtc::
IceCandidateInterface
;
[
all
...]
peerconnectionfactory_unittest.cc
97
virtual void OnIceCandidate(const webrtc::
IceCandidateInterface
* candidate) {}
/external/webrtc/webrtc/api/objctests/
RTCIceCandidateTest.mm
35
rtc::scoped_ptr<webrtc::
IceCandidateInterface
> nativeCandidate =
49
webrtc::
IceCandidateInterface
*nativeCandidate =
/external/webrtc/webrtc/examples/peerconnection/client/
conductor.h
74
virtual void OnIceCandidate(const webrtc::
IceCandidateInterface
* candidate);
conductor.cc
173
void Conductor::OnIceCandidate(const webrtc::
IceCandidateInterface
* candidate) {
311
rtc::scoped_ptr<webrtc::
IceCandidateInterface
> candidate(
/external/webrtc/talk/app/webrtc/test/
peerconnectiontestwrapper.cc
47
using webrtc::
IceCandidateInterface
;
122
const
IceCandidateInterface
* candidate) {
203
rtc::scoped_ptr<webrtc::
IceCandidateInterface
> owned_candidate(
peerconnectiontestwrapper.h
67
virtual void OnIceCandidate(const webrtc::
IceCandidateInterface
* candidate);
Completed in 201 milliseconds
1
2