Searched refs:TransportChannelImpl (Results 1 – 15 of 15) sorted by relevance
/external/webrtc/webrtc/p2p/base/ |
D | transportchannelimpl.h | 33 class TransportChannelImpl : public TransportChannel { 35 explicit TransportChannelImpl(const std::string& transport_name, in TransportChannelImpl() function 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);
|
D | transport.h | 44 class TransportChannelImpl; variable 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, 299 typedef std::map<int, TransportChannelImpl*> ChannelMap; 302 typedef void (TransportChannelImpl::* TransportChannelFunc)();
|
D | transport.cc | 165 TransportChannelImpl* Transport::CreateChannel(int component) { in CreateChannel() 166 TransportChannelImpl* channel; in CreateChannel() 173 channels_.insert(std::pair<int, TransportChannelImpl*>(component, channel)); in CreateChannel() 205 TransportChannelImpl* Transport::GetChannel(int component) { in GetChannel() 219 TransportChannelImpl* channel = iter->second; in DestroyChannel() 246 CallChannels(&TransportChannelImpl::Connect); in ConnectChannels() 251 CallChannels(&TransportChannelImpl::MaybeStartGathering); in MaybeStartGathering() 305 TransportChannelImpl* channel = kv.second; in GetStats() 334 TransportChannelImpl* channel = GetChannel(candidate.component()); in AddRemoteCandidates() 342 bool Transport::ApplyLocalTransportDescription(TransportChannelImpl* ch, in ApplyLocalTransportDescription() [all …]
|
D | transportcontroller.h | 130 explicit RefCountedChannel(TransportChannelImpl* impl) in RefCountedChannel() 140 TransportChannelImpl* get() const { return impl_; } in get() 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);
|
D | dtlstransportchannel.h | 82 class DtlsTransportChannelWrapper : public TransportChannelImpl { 88 TransportChannelImpl* channel); 199 TransportChannelImpl* channel() { return channel_; } in channel() 214 void OnGatheringState(TransportChannelImpl* channel); 215 void OnCandidateGathered(TransportChannelImpl* channel, const Candidate& c); 216 void OnRoleConflict(TransportChannelImpl* channel); 218 void OnConnectionRemoved(TransportChannelImpl* channel); 224 TransportChannelImpl* const channel_;
|
D | p2ptransport.cc | 30 TransportChannelImpl* P2PTransport::CreateTransportChannel(int component) { in CreateTransportChannel() 34 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
|
D | p2ptransport.h | 27 virtual TransportChannelImpl* CreateTransportChannel(int component); 28 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
|
D | dtlstransport.h | 62 bool ApplyLocalTransportDescription(TransportChannelImpl* channel, in ApplyLocalTransportDescription() 207 void DestroyTransportChannel(TransportChannelImpl* channel) override { in DestroyTransportChannel() 211 TransportChannelImpl* base_channel = dtls_channel->channel(); in DestroyTransportChannel() 223 bool ApplyNegotiatedTransportDescription(TransportChannelImpl* channel, in ApplyNegotiatedTransportDescription()
|
D | dtlstransportchannel.cc | 93 TransportChannelImpl* channel) in DtlsTransportChannelWrapper() 94 : TransportChannelImpl(channel->transport_name(), channel->component()), in DtlsTransportChannelWrapper() 601 TransportChannelImpl* channel) { in OnGatheringState() 607 TransportChannelImpl* channel, in OnCandidateGathered() 614 TransportChannelImpl* channel) { in OnRoleConflict() 626 TransportChannelImpl* channel) { in OnConnectionRemoved()
|
D | transportcontroller.cc | 156 TransportChannelImpl* channel = transport->CreateChannel(component); in CreateTransportChannel_w() 499 TransportChannelImpl* channel) { in OnChannelGatheringState_w() 505 TransportChannelImpl* channel, in OnChannelCandidateGathered_w() 522 TransportChannelImpl* channel) { in OnChannelRoleConflict_w() 541 TransportChannelImpl* channel) { in OnChannelConnectionRemoved_w()
|
D | faketransportcontroller.h | 45 class FakeTransportChannel : public TransportChannelImpl, 51 : TransportChannelImpl(name, component), in FakeTransportChannel() 413 TransportChannelImpl* CreateTransportChannel(int component) override { in CreateTransportChannel() 426 void DestroyTransportChannel(TransportChannelImpl* channel) override { in DestroyTransportChannel()
|
D | p2ptransportchannel.h | 65 class P2PTransportChannel : public TransportChannelImpl,
|
D | dtlstransportchannel_unittest.cc | 102 cricket::TransportChannelImpl* ch = transport_->GetChannel(component); in GetFakeChannel()
|
D | p2ptransportchannel.cc | 209 : TransportChannelImpl(transport_name, component), in P2PTransportChannel()
|
D | p2ptransportchannel_unittest.cc | 639 void OnCandidate(cricket::TransportChannelImpl* ch, in OnCandidate() 704 void OnRoleConflict(cricket::TransportChannelImpl* channel) { in OnRoleConflict()
|