/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
D | transportchannelimpl.h | 44 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);
|
D | transport.h | 79 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 …]
|
D | dtlstransportchannel.h | 106 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_.
|
D | transport.cc | 74 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 …]
|
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* 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()
|
D | dtlstransportchannel.cc | 100 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()
|
D | rawtransport.h | 61 virtual TransportChannelImpl* CreateTransportChannel(int component); 62 virtual void DestroyTransportChannel(TransportChannelImpl* channel);
|
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() 375 virtual TransportChannelImpl* CreateTransportChannel(int component) { in CreateTransportChannel() 386 virtual void DestroyTransportChannel(TransportChannelImpl* channel) { in DestroyTransportChannel()
|
D | session.h | 56 class TransportChannelImpl; variable 185 TransportChannelImpl* GetOrCreateChannelProxyImpl(int component); 186 TransportChannelImpl* GetOrCreateChannelProxyImpl_w(int component); 194 TransportChannelImpl* impl); 196 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()
|
D | rawtransportchannel.h | 56 class RawTransportChannel : public TransportChannelImpl,
|
D | rawtransportchannel.cc | 59 : TransportChannelImpl(content_name, component), in RawTransportChannel()
|
D | p2ptransportchannel.h | 68 class P2PTransportChannel : public TransportChannelImpl,
|
D | transportchannelproxy.cc | 57 void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) { in SetImplementation()
|
D | p2ptransportchannel_unittest.cc | 645 void OnChannelRequestSignaling(cricket::TransportChannelImpl* channel) { in OnChannelRequestSignaling() 649 void OnCandidate(cricket::TransportChannelImpl* ch, in OnCandidate() 678 void OnRoleConflict(cricket::TransportChannelImpl* channel) { in OnRoleConflict()
|
D | dtlstransportchannel_unittest.cc | 121 cricket::TransportChannelImpl* ch = transport_->GetChannel(component); in GetFakeChannel()
|
D | p2ptransportchannel.cc | 159 TransportChannelImpl(content_name, component), in P2PTransportChannel()
|
/external/chromium_org/remoting/protocol/ |
D | libjingle_transport_factory.cc | 73 void OnRequestSignaling(cricket::TransportChannelImpl* channel); 74 void OnCandidateReady(cricket::TransportChannelImpl* channel, 270 cricket::TransportChannelImpl* channel) { in OnRequestSignaling() 276 cricket::TransportChannelImpl* channel, in OnCandidateReady()
|