HomeSort by relevance Sort by last modified time
    Searched refs:TransportChannelImpl (Results 1 - 15 of 15) sorted by null

  /external/webrtc/webrtc/p2p/base/
p2ptransport.cc 30 TransportChannelImpl* P2PTransport::CreateTransportChannel(int component) {
34 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) {
p2ptransport.h 27 virtual TransportChannelImpl* CreateTransportChannel(int component);
28 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
transportchannelimpl.h 33 class TransportChannelImpl : public TransportChannel {
35 explicit TransportChannelImpl(const std::string& transport_name,
71 sigslot::signal1<TransportChannelImpl*> SignalGatheringState;
81 sigslot::signal2<TransportChannelImpl*, const Candidate&>
100 sigslot::signal1<TransportChannelImpl*> SignalRoleConflict;
104 sigslot::signal1<TransportChannelImpl*> SignalConnectionRemoved;
107 RTC_DISALLOW_COPY_AND_ASSIGN(TransportChannelImpl);
transport.h 44 class TransportChannelImpl;
199 TransportChannelImpl* CreateChannel(int component);
201 TransportChannelImpl* GetChannel(int component);
256 virtual TransportChannelImpl* CreateTransportChannel(int component) = 0;
257 virtual void DestroyTransportChannel(TransportChannelImpl* channel) = 0;
274 virtual bool ApplyLocalTransportDescription(TransportChannelImpl* channel,
279 virtual bool ApplyRemoteTransportDescription(TransportChannelImpl* ch,
294 TransportChannelImpl* channel,
298 // Candidate component => TransportChannelImpl*
299 typedef std::map<int, TransportChannelImpl*> ChannelMap
    [all...]
transport.cc 18 #include "webrtc/p2p/base/transportchannelimpl.h"
165 TransportChannelImpl* Transport::CreateChannel(int component) {
166 TransportChannelImpl* channel;
173 channels_.insert(std::pair<int, TransportChannelImpl*>(component, channel));
205 TransportChannelImpl* Transport::GetChannel(int component) {
219 TransportChannelImpl* channel = iter->second;
246 CallChannels(&TransportChannelImpl::Connect);
251 CallChannels(&TransportChannelImpl::MaybeStartGathering);
305 TransportChannelImpl* channel = kv.second;
334 TransportChannelImpl* channel = GetChannel(candidate.component())
    [all...]
dtlstransportchannel.h 17 #include "webrtc/p2p/base/transportchannelimpl.h"
64 // TransportChannelImpl* channel_;
82 class DtlsTransportChannelWrapper : public TransportChannelImpl {
88 TransportChannelImpl* channel);
161 // TransportChannelImpl calls.
199 TransportChannelImpl* channel() { return channel_; }
214 void OnGatheringState(TransportChannelImpl* channel);
215 void OnCandidateGathered(TransportChannelImpl* channel, const Candidate& c);
216 void OnRoleConflict(TransportChannelImpl* channel);
218 void OnConnectionRemoved(TransportChannelImpl* channel)
    [all...]
transportcontroller.h 130 explicit RefCountedChannel(TransportChannelImpl* impl)
140 TransportChannelImpl* get() const { return impl_; }
141 TransportChannelImpl* operator->() const { return impl_; }
144 TransportChannelImpl* impl_;
185 void OnChannelGatheringState_w(TransportChannelImpl* channel);
186 void OnChannelCandidateGathered_w(TransportChannelImpl* channel,
188 void OnChannelRoleConflict_w(TransportChannelImpl* channel);
189 void OnChannelConnectionRemoved_w(TransportChannelImpl* channel);
dtlstransport.h 62 bool ApplyLocalTransportDescription(TransportChannelImpl* channel,
207 void DestroyTransportChannel(TransportChannelImpl* channel) override {
211 TransportChannelImpl* base_channel = dtls_channel->channel();
223 bool ApplyNegotiatedTransportDescription(TransportChannelImpl* channel,
dtlstransportchannel.cc 93 TransportChannelImpl* channel)
94 : TransportChannelImpl(channel->transport_name(), channel->component()),
601 TransportChannelImpl* channel) {
607 TransportChannelImpl* channel,
614 TransportChannelImpl* channel) {
626 TransportChannelImpl* channel) {
faketransportcontroller.h 21 #include "webrtc/p2p/base/transportchannelimpl.h"
45 class FakeTransportChannel : public TransportChannelImpl,
51 : TransportChannelImpl(name, component),
413 TransportChannelImpl* CreateTransportChannel(int component) override {
426 void DestroyTransportChannel(TransportChannelImpl* channel) override {
transportcontroller.cc 156 TransportChannelImpl* channel = transport->CreateChannel(component);
499 TransportChannelImpl* channel) {
505 TransportChannelImpl* channel,
522 TransportChannelImpl* channel) {
527 << "Repeat of role conflict signal from TransportChannelImpl.";
541 TransportChannelImpl* channel) {
p2ptransportchannel.h 31 #include "webrtc/p2p/base/transportchannelimpl.h"
65 class P2PTransportChannel : public TransportChannelImpl,
74 // From TransportChannelImpl:
dtlstransportchannel_unittest.cc 102 cricket::TransportChannelImpl* ch = transport_->GetChannel(component);
    [all...]
p2ptransportchannel.cc 209 : TransportChannelImpl(transport_name, component),
    [all...]
p2ptransportchannel_unittest.cc 639 void OnCandidate(cricket::TransportChannelImpl* ch,
704 void OnRoleConflict(cricket::TransportChannelImpl* channel) {
    [all...]

Completed in 329 milliseconds