Home
last modified time | relevance | path

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

12

/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Dtransport.h79 class TransportChannelImpl; variable
259 TransportChannelImpl* CreateChannel(int component);
262 TransportChannelImpl* GetChannel(int component);
338 virtual TransportChannelImpl* CreateTransportChannel(int component) = 0;
339 virtual void DestroyTransportChannel(TransportChannelImpl* channel) = 0;
365 virtual bool ApplyLocalTransportDescription_w(TransportChannelImpl*
370 virtual bool ApplyRemoteTransportDescription_w(TransportChannelImpl* ch);
383 TransportChannelImpl* channel);
392 explicit ChannelMapEntry(TransportChannelImpl *impl) in ChannelMapEntry()
405 TransportChannelImpl* get() const { return impl_; } in get()
[all …]
Dtransportchannelimpl.h44 class TransportChannelImpl : public TransportChannel {
46 explicit TransportChannelImpl(const std::string& content_name, int component) in TransportChannelImpl() function
80 sigslot::signal1<TransportChannelImpl*> SignalRequestSignaling;
91 sigslot::signal2<TransportChannelImpl*,
110 sigslot::signal1<TransportChannelImpl*> SignalCandidatesAllocationDone;
114 sigslot::signal1<TransportChannelImpl*> SignalRoleConflict;
117 DISALLOW_EVIL_CONSTRUCTORS(TransportChannelImpl);
Ddtlstransportchannel.h106 class DtlsTransportChannelWrapper : public TransportChannelImpl {
121 TransportChannelImpl* channel);
222 TransportChannelImpl* channel() { return channel_; } in channel()
234 void OnRequestSignaling(TransportChannelImpl* channel);
235 void OnCandidateReady(TransportChannelImpl* channel, const Candidate& c);
236 void OnCandidatesAllocationDone(TransportChannelImpl* channel);
237 void OnRoleConflict(TransportChannelImpl* channel);
242 TransportChannelImpl* channel_; // Underlying channel, owned by transport_.
Dtransport.cc72 TransportChannelImpl* channel;
145 TransportChannelImpl* Transport::CreateChannel(int component) { in CreateChannel()
146 return worker_thread_->Invoke<TransportChannelImpl*>(Bind( in CreateChannel()
150 TransportChannelImpl* Transport::CreateChannel_w(int component) { in CreateChannel_w()
152 TransportChannelImpl *impl; in CreateChannel_w()
207 TransportChannelImpl* Transport::GetChannel(int component) { in GetChannel()
226 TransportChannelImpl* impl = NULL; in DestroyChannel_w()
282 CallChannels_w(&TransportChannelImpl::Connect); in ConnectChannels_w()
304 std::vector<TransportChannelImpl*> impls; in DestroyAllChannels_w()
338 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* in ApplyLocalTransportDescription_w()
202 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
206 TransportChannelImpl* base_channel = dtls_channel->channel(); in DestroyTransportChannel()
219 TransportChannelImpl* channel) { in ApplyNegotiatedTransportDescription_w()
Drawtransport.h61 virtual TransportChannelImpl* CreateTransportChannel(int component);
62 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
Ddtlstransportchannel.cc100 TransportChannelImpl* channel) in DtlsTransportChannelWrapper()
101 : TransportChannelImpl(channel->content_name(), channel->component()), in DtlsTransportChannelWrapper()
595 TransportChannelImpl* channel) { in OnRequestSignaling()
601 TransportChannelImpl* channel, const Candidate& c) { in OnCandidateReady()
607 TransportChannelImpl* channel) { in OnCandidatesAllocationDone()
613 TransportChannelImpl* channel) { in OnRoleConflict()
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()
361 virtual TransportChannelImpl* CreateTransportChannel(int component) { in CreateTransportChannel()
372 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
Dsession.h56 class TransportChannelImpl; variable
174 TransportChannelImpl* GetOrCreateChannelProxyImpl(int component);
175 TransportChannelImpl* GetOrCreateChannelProxyImpl_w(int component);
183 TransportChannelImpl* impl);
185 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()
/external/chromium/third_party/libjingle/source/talk/p2p/base/
Dtransport.h75 class TransportChannelImpl; variable
139 TransportChannelImpl* CreateChannel(const std::string& name,
143 TransportChannelImpl* GetChannel(const std::string& name);
204 virtual TransportChannelImpl* CreateTransportChannel(
206 virtual void DestroyTransportChannel(TransportChannelImpl* channel) = 0;
212 typedef std::map<std::string, TransportChannelImpl*> ChannelMap;
224 void OnChannelCandidateReady(TransportChannelImpl* channel,
233 TransportChannelImpl* CreateChannel_w(const std::string& name,
246 typedef void (TransportChannelImpl::* TransportChannelFunc)();
Dtransportchannelimpl.h44 class TransportChannelImpl : public TransportChannel {
46 TransportChannelImpl(const std::string& name, const std::string& content_type) in TransportChannelImpl() function
72 sigslot::signal2<TransportChannelImpl*,
76 DISALLOW_EVIL_CONSTRUCTORS(TransportChannelImpl);
Dtransportchannelproxy.h37 class TransportChannelImpl; variable
48 TransportChannelImpl* impl() const { return impl_; } in impl()
51 void SetImplementation(TransportChannelImpl* impl);
63 TransportChannelImpl* impl_;
Dtransport.cc61 cricket::TransportChannelImpl* channel;
96 TransportChannelImpl* Transport::CreateChannel( in CreateChannel()
104 TransportChannelImpl* Transport::CreateChannel_w( in CreateChannel_w()
108 TransportChannelImpl* impl = CreateTransportChannel(name, content_type); in CreateChannel_w()
130 TransportChannelImpl* Transport::GetChannel(const std::string& name) { in GetChannel()
150 TransportChannelImpl* impl = NULL; in DestroyChannel_w()
184 CallChannels_w(&TransportChannelImpl::Connect); in ConnectChannels_w()
205 std::vector<TransportChannelImpl*> impls; in DestroyAllChannels_w()
236 CallChannels_w(&TransportChannelImpl::Reset); in ResetChannels_w()
366 void Transport::OnChannelCandidateReady(TransportChannelImpl* channel, in OnChannelCandidateReady()
[all …]
Drawtransport.h58 virtual TransportChannelImpl* CreateTransportChannel(
60 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
Dp2ptransport.h48 virtual TransportChannelImpl* CreateTransportChannel(
50 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
Drawtransport.cc117 TransportChannelImpl* RawTransport::CreateTransportChannel( in CreateTransportChannel()
124 void RawTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
Dp2ptransport.cc192 TransportChannelImpl* P2PTransport::CreateTransportChannel( in CreateTransportChannel()
197 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
Drawtransportchannel.h56 class RawTransportChannel : public TransportChannelImpl,
Dtransportchannelproxy.cc45 void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) { in SetImplementation()
/external/chromium_org/remoting/protocol/
Dlibjingle_transport_factory.cc74 void OnRequestSignaling(cricket::TransportChannelImpl* channel);
75 void OnCandidateReady(cricket::TransportChannelImpl* channel,
270 cricket::TransportChannelImpl* channel) { in OnRequestSignaling()
276 cricket::TransportChannelImpl* channel, in OnCandidateReady()

12