Home
last modified time | relevance | path

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

/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()
Dp2ptransportchannel.h67 class P2PTransportChannel : public TransportChannelImpl,
Dsession.h51 class TransportChannelImpl; variable
113 TransportChannelImpl* GetOrCreateImpl(const std::string& name,
Drawtransportchannel.cc59 : TransportChannelImpl(name, content_type), in RawTransportChannel()
Dsession.cc139 TransportChannelImpl* TransportProxy::GetOrCreateImpl( in GetOrCreateImpl()
141 TransportChannelImpl* impl = transport_->GetChannel(name); in GetOrCreateImpl()
150 TransportChannelImpl* impl = GetOrCreateImpl(name, proxy->content_type()); in SetProxyImpl()
Dp2ptransportchannel.cc166 TransportChannelImpl(name, content_type), in P2PTransportChannel()