/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
D | transportchannel.h | 58 class TransportChannel : public sigslot::has_slots<> { 60 explicit TransportChannel(const std::string& content_name, int component) in TransportChannel() function 64 virtual ~TransportChannel() {} in ~TransportChannel() 78 sigslot::signal1<TransportChannel*> SignalReadableState; 79 sigslot::signal1<TransportChannel*> SignalWritableState; 81 sigslot::signal1<TransportChannel*> SignalReadyToSend; 126 sigslot::signal5<TransportChannel*, const char*, 132 sigslot::signal2<TransportChannel*, const Candidate&> SignalRouteChange; 135 sigslot::signal1<TransportChannel*> SignalDestroyed; 155 DISALLOW_EVIL_CONSTRUCTORS(TransportChannel);
|
D | transportchannelproxy.h | 50 class TransportChannelProxy : public TransportChannel, 90 void OnReadableState(TransportChannel* channel); 91 void OnWritableState(TransportChannel* channel); 92 void OnReadPacket(TransportChannel* channel, const char* data, size_t size, 94 void OnReadyToSend(TransportChannel* channel); 95 void OnRouteChange(TransportChannel* channel, const Candidate& candidate);
|
D | transportchannel.cc | 33 std::string TransportChannel::ToString() const { in ToString() 43 void TransportChannel::set_readable(bool readable) { in set_readable() 50 void TransportChannel::set_writable(bool writable) { in set_writable()
|
D | dtlstransportchannel.h | 48 StreamInterfaceChannel(talk_base::Thread* owner, TransportChannel* channel) in StreamInterfaceChannel() 72 TransportChannel* channel_; // owned by DtlsTransportChannelWrapper 231 void OnReadableState(TransportChannel* channel); 232 void OnWritableState(TransportChannel* channel); 233 void OnReadPacket(TransportChannel* channel, const char* data, size_t size, 235 void OnReadyToSend(TransportChannel* channel); 244 void OnRouteChange(TransportChannel* channel, const Candidate& candidate);
|
D | transportchannelproxy.cc | 44 : TransportChannel(content_name, component), in TransportChannelProxy() 222 void TransportChannelProxy::OnReadableState(TransportChannel* channel) { in OnReadableState() 229 void TransportChannelProxy::OnWritableState(TransportChannel* channel) { in OnWritableState() 237 TransportChannel* channel, const char* data, size_t size, in OnReadPacket() 244 void TransportChannelProxy::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() 250 void TransportChannelProxy::OnRouteChange(TransportChannel* channel, in OnRouteChange()
|
D | transport.h | 78 class TransportChannel; variable 430 void OnChannelReadableState(TransportChannel* channel); 431 void OnChannelWritableState(TransportChannel* channel); 441 void OnChannelRouteChange(TransportChannel* channel, 465 void OnChannelRouteChange_s(const TransportChannel* channel,
|
D | transportchannelimpl.h | 44 class TransportChannelImpl : public TransportChannel { 47 : TransportChannel(content_name, component) {} in TransportChannelImpl()
|
D | dtlstransportchannel.cc | 402 void DtlsTransportChannelWrapper::OnReadableState(TransportChannel* channel) { in OnReadableState() 414 void DtlsTransportChannelWrapper::OnWritableState(TransportChannel* channel) { in OnWritableState() 456 TransportChannel* channel, const char* data, size_t size, in OnReadPacket() 518 void DtlsTransportChannelWrapper::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() 625 TransportChannel* channel, const Candidate& candidate) { in OnRouteChange()
|
D | session.h | 54 class TransportChannel; variable 127 TransportChannel* GetChannel(int component); 128 TransportChannel* CreateChannel(const std::string& channel_name, 376 virtual TransportChannel* CreateChannel(const std::string& content_name, 381 virtual TransportChannel* GetChannel(const std::string& content_name,
|
D | p2ptransportchannel_unittest.cc | 220 bool HasChannel(cricket::TransportChannel* ch) { in HasChannel() 223 ChannelData* GetChannelData(cricket::TransportChannel* ch) { in GetChannelData() 261 CandidateData(cricket::TransportChannel* ch, const cricket::Candidate& c) in CandidateData() 264 cricket::TransportChannel* channel; 268 ChannelData* GetChannelData(cricket::TransportChannel* channel) { in GetChannelData() 672 void OnReadPacket(cricket::TransportChannel* channel, const char* data, in OnReadPacket() 685 int SendData(cricket::TransportChannel* channel, in SendData() 690 bool CheckDataOnChannel(cricket::TransportChannel* channel, in CheckDataOnChannel() 704 Endpoint* GetEndpoint(cricket::TransportChannel* ch) { in GetEndpoint() 714 cricket::TransportChannel* ch) { in GetRemoteChannel() [all …]
|
D | transport.cc | 505 void Transport::OnChannelReadableState(TransportChannel* channel) { in OnChannelReadableState() 519 void Transport::OnChannelWritableState(TransportChannel* channel) { in OnChannelWritableState() 607 void Transport::OnChannelRouteChange(TransportChannel* channel, in OnChannelRouteChange() 615 void Transport::OnChannelRouteChange_s(const TransportChannel* channel, in OnChannelRouteChange_s()
|
D | session_unittest.cc | 777 explicit ChannelHandler(cricket::TransportChannel* p, const std::string& name) in ChannelHandler() 793 void OnReadableState(cricket::TransportChannel* p) { in OnReadableState() 798 void OnWritableState(cricket::TransportChannel* p) { in OnWritableState() 803 void OnReadPacket(cricket::TransportChannel* p, const char* buf, in OnReadPacket() 826 cricket::TransportChannel* channel; 976 const cricket::TransportChannel* channel = in HasChannel() 981 cricket::TransportChannel* GetChannel(const std::string& content_name, in GetChannel() 1373 cricket::TransportChannel* initiator_chan_a = initiator->chan_a->channel; in TestSession() 1374 cricket::TransportChannel* initiator_chan_b = initiator->chan_b->channel; in TestSession() 1385 cricket::TransportChannel* responder_chan_a = responder->chan_a->channel; in TestSession() [all …]
|
D | dtlstransportchannel_unittest.cc | 315 void OnTransportChannelWritableState(cricket::TransportChannel* channel) { in OnTransportChannelWritableState() 320 void OnTransportChannelReadPacket(cricket::TransportChannel* channel, in OnTransportChannelReadPacket() 334 void OnFakeTransportChannelReadPacket(cricket::TransportChannel* channel, in OnFakeTransportChannelReadPacket()
|
D | session.cc | 71 TransportChannel* TransportProxy::GetChannel(int component) { in GetChannel() 76 TransportChannel* TransportProxy::CreateChannel( in CreateChannel() 103 TransportChannel* channel = GetChannel(component); in DestroyChannel() 497 TransportChannel* BaseSession::CreateChannel(const std::string& content_name, in CreateChannel() 507 TransportChannel* BaseSession::GetChannel(const std::string& content_name, in GetChannel()
|
D | transport_unittest.cc | 44 using cricket::TransportChannel;
|
/external/chromium_org/jingle/glue/ |
D | channel_socket_adapter.h | 20 class TransportChannel; variable 32 explicit TransportChannelSocketAdapter(cricket::TransportChannel* channel); 55 void OnNewPacket(cricket::TransportChannel* channel, 60 void OnWritableState(cricket::TransportChannel* channel); 61 void OnChannelDestroyed(cricket::TransportChannel* channel); 65 cricket::TransportChannel* channel_;
|
D | channel_socket_adapter.cc | 19 cricket::TransportChannel* channel) in TransportChannelSocketAdapter() 142 cricket::TransportChannel* channel, in OnNewPacket() 173 cricket::TransportChannel* channel) { in OnWritableState() 194 cricket::TransportChannel* channel) { in OnChannelDestroyed()
|
D | channel_socket_adapter_unittest.cc | 30 class MockTransportChannel : public cricket::TransportChannel { 32 MockTransportChannel() : cricket::TransportChannel(std::string(), 0) { in MockTransportChannel()
|
/external/chromium_org/third_party/libjingle/source/talk/session/tunnel/ |
D | pseudotcpchannel.h | 44 class TransportChannel; variable 109 void OnChannelDestroyed(TransportChannel* channel); 112 void OnChannelWritableState(TransportChannel* channel); 113 void OnChannelRead(TransportChannel* channel, const char* data, size_t size, 115 void OnChannelConnectionChanged(TransportChannel* channel, 128 TransportChannel* channel_;
|
D | pseudotcpchannel.cc | 170 void PseudoTcpChannel::OnChannelDestroyed(TransportChannel* channel) { in OnChannelDestroyed() 321 void PseudoTcpChannel::OnChannelWritableState(TransportChannel* channel) { in OnChannelWritableState() 342 void PseudoTcpChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead() 362 void PseudoTcpChannel::OnChannelConnectionChanged(TransportChannel* channel, in OnChannelConnectionChanged()
|
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
D | channel.h | 83 bool Init(TransportChannel* transport_channel, 84 TransportChannel* rtcp_transport_channel); 92 TransportChannel* transport_channel() const { in transport_channel() 95 TransportChannel* rtcp_transport_channel() const { in rtcp_transport_channel() 232 void SetReadyToSend(TransportChannel* channel, bool ready); 237 void set_rtcp_transport_channel(TransportChannel* transport); 261 void OnWritableState(TransportChannel* channel); 262 virtual void OnChannelRead(TransportChannel* channel, 267 void OnReadyToSend(TransportChannel* channel); 269 bool PacketIsRtcp(const TransportChannel* channel, const char* data, [all …]
|
D | channel.cc | 212 bool BaseChannel::Init(TransportChannel* transport_channel, in Init() 213 TransportChannel* rtcp_transport_channel) { in Init() 312 void BaseChannel::set_rtcp_transport_channel(TransportChannel* channel) { in set_rtcp_transport_channel() 358 TransportChannel* channel = NULL; in SetOption() 370 void BaseChannel::OnWritableState(TransportChannel* channel) { in OnWritableState() 380 void BaseChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead() 394 void BaseChannel::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() 398 void BaseChannel::SetReadyToSend(TransportChannel* channel, bool ready) { in SetReadyToSend() 418 bool BaseChannel::PacketIsRtcp(const TransportChannel* channel, in PacketIsRtcp() 447 TransportChannel* channel = (!rtcp || rtcp_mux_filter_.IsActive()) ? in SendPacket() [all …]
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
D | socketmonitor.h | 43 SocketMonitor(TransportChannel* channel, 61 TransportChannel* channel_;
|
D | socketmonitor.cc | 41 SocketMonitor::SocketMonitor(TransportChannel* channel, in SocketMonitor()
|
/external/chromium_org/remoting/protocol/ |
D | libjingle_transport_factory.cc | 76 void OnRouteChange(cricket::TransportChannel* channel, 78 void OnWritableState(cricket::TransportChannel* channel); 283 cricket::TransportChannel* channel, in OnRouteChange() 314 cricket::TransportChannel* channel) { in OnWritableState()
|