/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
D | transport.h | 79 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 …]
|
D | transportchannelimpl.h | 44 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);
|
D | dtlstransportchannel.h | 106 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_.
|
D | transport.cc | 72 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 …]
|
D | transportchannelproxy.h | 44 class TransportChannelImpl; variable 59 TransportChannelImpl* impl() { return impl_; } in impl() 62 void SetImplementation(TransportChannelImpl* impl); 103 TransportChannelImpl* impl_;
|
D | dtlstransport.h | 69 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()
|
D | rawtransport.h | 61 virtual TransportChannelImpl* CreateTransportChannel(int component); 62 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
|
D | dtlstransportchannel.cc | 100 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()
|
D | p2ptransport.h | 47 virtual TransportChannelImpl* CreateTransportChannel(int component); 48 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
|
D | rawtransport.cc | 121 TransportChannelImpl* RawTransport::CreateTransportChannel(int component) { in CreateTransportChannel() 127 void RawTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
|
D | fakesession.h | 58 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()
|
D | session.h | 56 class TransportChannelImpl; variable 174 TransportChannelImpl* GetOrCreateChannelProxyImpl(int component); 175 TransportChannelImpl* GetOrCreateChannelProxyImpl_w(int component); 183 TransportChannelImpl* impl); 185 TransportChannelImpl* impl);
|
D | p2ptransport.cc | 72 TransportChannelImpl* P2PTransport::CreateTransportChannel(int component) { in CreateTransportChannel() 77 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
|
D | session.cc | 199 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/ |
D | transport.h | 75 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)();
|
D | transportchannelimpl.h | 44 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);
|
D | transportchannelproxy.h | 37 class TransportChannelImpl; variable 48 TransportChannelImpl* impl() const { return impl_; } in impl() 51 void SetImplementation(TransportChannelImpl* impl); 63 TransportChannelImpl* impl_;
|
D | transport.cc | 61 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 …]
|
D | rawtransport.h | 58 virtual TransportChannelImpl* CreateTransportChannel( 60 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
|
D | p2ptransport.h | 48 virtual TransportChannelImpl* CreateTransportChannel( 50 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
|
D | rawtransport.cc | 117 TransportChannelImpl* RawTransport::CreateTransportChannel( in CreateTransportChannel() 124 void RawTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
|
D | p2ptransport.cc | 192 TransportChannelImpl* P2PTransport::CreateTransportChannel( in CreateTransportChannel() 197 void P2PTransport::DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
|
D | rawtransportchannel.h | 56 class RawTransportChannel : public TransportChannelImpl,
|
D | transportchannelproxy.cc | 45 void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) { in SetImplementation()
|
/external/chromium_org/remoting/protocol/ |
D | libjingle_transport_factory.cc | 74 void OnRequestSignaling(cricket::TransportChannelImpl* channel); 75 void OnCandidateReady(cricket::TransportChannelImpl* channel, 270 cricket::TransportChannelImpl* channel) { in OnRequestSignaling() 276 cricket::TransportChannelImpl* channel, in OnCandidateReady()
|