Home
last modified time | relevance | path

Searched refs:TransportChannelImpl (Results 1 – 22 of 22) sorted by relevance

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dtransportchannelimpl.h44 class TransportChannelImpl : public TransportChannel {
46 explicit TransportChannelImpl(const std::string& content_name, int component) in TransportChannelImpl() function
82 sigslot::signal1<TransportChannelImpl*> SignalRequestSignaling;
93 sigslot::signal2<TransportChannelImpl*,
112 sigslot::signal1<TransportChannelImpl*> SignalCandidatesAllocationDone;
116 sigslot::signal1<TransportChannelImpl*> SignalRoleConflict;
120 sigslot::signal1<TransportChannelImpl*> SignalConnectionRemoved;
123 DISALLOW_EVIL_CONSTRUCTORS(TransportChannelImpl);
Dtransport.h79 class TransportChannelImpl; variable
263 TransportChannelImpl* CreateChannel(int component);
266 TransportChannelImpl* GetChannel(int component);
344 virtual TransportChannelImpl* CreateTransportChannel(int component) = 0;
345 virtual void DestroyTransportChannel(TransportChannelImpl* channel) = 0;
371 virtual bool ApplyLocalTransportDescription_w(TransportChannelImpl* channel,
376 virtual bool ApplyRemoteTransportDescription_w(TransportChannelImpl* ch,
391 TransportChannelImpl* channel, std::string* error_desc);
400 explicit ChannelMapEntry(TransportChannelImpl *impl) in ChannelMapEntry()
413 TransportChannelImpl* get() const { return impl_; } in get()
[all …]
Ddtlstransportchannel.h106 class DtlsTransportChannelWrapper : public TransportChannelImpl {
121 TransportChannelImpl* channel);
228 TransportChannelImpl* channel() { return channel_; } in channel()
240 void OnRequestSignaling(TransportChannelImpl* channel);
241 void OnCandidateReady(TransportChannelImpl* channel, const Candidate& c);
242 void OnCandidatesAllocationDone(TransportChannelImpl* channel);
243 void OnRoleConflict(TransportChannelImpl* channel);
245 void OnConnectionRemoved(TransportChannelImpl* channel);
249 TransportChannelImpl* channel_; // Underlying channel, owned by transport_.
Dtransport.cc74 TransportChannelImpl* channel;
196 TransportChannelImpl* Transport::CreateChannel(int component) { in CreateChannel()
197 return worker_thread_->Invoke<TransportChannelImpl*>(Bind( in CreateChannel()
201 TransportChannelImpl* Transport::CreateChannel_w(int component) { in CreateChannel_w()
203 TransportChannelImpl *impl; in CreateChannel_w()
261 TransportChannelImpl* Transport::GetChannel(int component) { in GetChannel()
280 TransportChannelImpl* impl = NULL; in DestroyChannel_w()
336 CallChannels_w(&TransportChannelImpl::Connect); in ConnectChannels_w()
358 std::vector<TransportChannelImpl*> impls; in DestroyAllChannels_w()
392 CallChannels_w(&TransportChannelImpl::Reset); in ResetChannels_w()
[all …]
Dtransportchannelproxy.h44 class TransportChannelImpl; variable
59 TransportChannelImpl* impl() { return impl_; } in impl()
62 void SetImplementation(TransportChannelImpl* impl);
103 TransportChannelImpl* impl_;
Ddtlstransport.h69 virtual bool ApplyLocalTransportDescription_w(TransportChannelImpl* channel, in ApplyLocalTransportDescription_w()
212 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
216 TransportChannelImpl* base_channel = dtls_channel->channel(); in DestroyTransportChannel()
229 TransportChannelImpl* channel, in ApplyNegotiatedTransportDescription_w()
Ddtlstransportchannel.cc100 TransportChannelImpl* channel) in DtlsTransportChannelWrapper()
101 : TransportChannelImpl(channel->content_name(), channel->component()), in DtlsTransportChannelWrapper()
601 TransportChannelImpl* channel) { in OnRequestSignaling()
607 TransportChannelImpl* channel, const Candidate& c) { in OnCandidateReady()
613 TransportChannelImpl* channel) { in OnCandidatesAllocationDone()
619 TransportChannelImpl* channel) { in OnRoleConflict()
631 TransportChannelImpl* channel) { in OnConnectionRemoved()
Drawtransport.h61 virtual TransportChannelImpl* CreateTransportChannel(int component);
62 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
Dp2ptransport.h47 virtual TransportChannelImpl* CreateTransportChannel(int component);
48 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
Drawtransport.cc121 TransportChannelImpl* RawTransport::CreateTransportChannel(int component) { in CreateTransportChannel()
127 void RawTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
Dfakesession.h58 class FakeTransportChannel : public TransportChannelImpl,
64 : TransportChannelImpl(content_name, component), in FakeTransportChannel()
375 virtual TransportChannelImpl* CreateTransportChannel(int component) { in CreateTransportChannel()
386 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
Dsession.h56 class TransportChannelImpl; variable
185 TransportChannelImpl* GetOrCreateChannelProxyImpl(int component);
186 TransportChannelImpl* GetOrCreateChannelProxyImpl_w(int component);
194 TransportChannelImpl* impl);
196 TransportChannelImpl* impl);
Dp2ptransport.cc72 TransportChannelImpl* P2PTransport::CreateTransportChannel(int component) { in CreateTransportChannel()
77 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
Dsession.cc199 TransportChannelImpl* TransportProxy::GetOrCreateChannelProxyImpl( in GetOrCreateChannelProxyImpl()
201 return worker_thread_->Invoke<TransportChannelImpl*>(Bind( in GetOrCreateChannelProxyImpl()
205 TransportChannelImpl* TransportProxy::GetOrCreateChannelProxyImpl_w( in GetOrCreateChannelProxyImpl_w()
208 TransportChannelImpl* impl = transport_->get()->GetChannel(component); in GetOrCreateChannelProxyImpl_w()
224 TransportChannelImpl* impl = GetOrCreateChannelProxyImpl(component); in SetupChannelProxy_w()
230 TransportChannelImpl* impl) { in ReplaceChannelProxyImpl()
236 TransportChannelImpl* impl) { in ReplaceChannelProxyImpl_w()
Drawtransportchannel.h56 class RawTransportChannel : public TransportChannelImpl,
Drawtransportchannel.cc59 : TransportChannelImpl(content_name, component), in RawTransportChannel()
Dp2ptransportchannel.h68 class P2PTransportChannel : public TransportChannelImpl,
Dtransportchannelproxy.cc57 void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) { in SetImplementation()
Dp2ptransportchannel_unittest.cc645 void OnChannelRequestSignaling(cricket::TransportChannelImpl* channel) { in OnChannelRequestSignaling()
649 void OnCandidate(cricket::TransportChannelImpl* ch, in OnCandidate()
678 void OnRoleConflict(cricket::TransportChannelImpl* channel) { in OnRoleConflict()
Ddtlstransportchannel_unittest.cc121 cricket::TransportChannelImpl* ch = transport_->GetChannel(component); in GetFakeChannel()
Dp2ptransportchannel.cc159 TransportChannelImpl(content_name, component), in P2PTransportChannel()
/external/chromium_org/remoting/protocol/
Dlibjingle_transport_factory.cc73 void OnRequestSignaling(cricket::TransportChannelImpl* channel);
74 void OnCandidateReady(cricket::TransportChannelImpl* channel,
270 cricket::TransportChannelImpl* channel) { in OnRequestSignaling()
276 cricket::TransportChannelImpl* channel, in OnCandidateReady()