/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(rtc::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 435 void OnChannelReadableState(TransportChannel* channel); 436 void OnChannelWritableState(TransportChannel* channel); 446 void OnChannelRouteChange(TransportChannel* channel, 470 void OnChannelRouteChange_s(const TransportChannel* channel,
|
D | transportchannelimpl.h | 44 class TransportChannelImpl : public TransportChannel { 47 : TransportChannel(content_name, component) {} in TransportChannelImpl()
|
D | dtlstransportchannel.cc | 407 void DtlsTransportChannelWrapper::OnReadableState(TransportChannel* channel) { in OnReadableState() 419 void DtlsTransportChannelWrapper::OnWritableState(TransportChannel* channel) { in OnWritableState() 461 TransportChannel* channel, const char* data, size_t size, in OnReadPacket() 523 void DtlsTransportChannelWrapper::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() 630 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, 355 virtual TransportChannel* CreateChannel(const std::string& content_name, 360 virtual TransportChannel* GetChannel(const std::string& content_name,
|
D | p2ptransportchannel_unittest.cc | 223 bool HasChannel(cricket::TransportChannel* ch) { in HasChannel() 226 ChannelData* GetChannelData(cricket::TransportChannel* ch) { in GetChannelData() 264 CandidateData(cricket::TransportChannel* ch, const cricket::Candidate& c) in CandidateData() 267 cricket::TransportChannel* channel; 271 ChannelData* GetChannelData(cricket::TransportChannel* channel) { in GetChannelData() 675 void OnReadPacket(cricket::TransportChannel* channel, const char* data, in OnReadPacket() 688 int SendData(cricket::TransportChannel* channel, in SendData() 693 bool CheckDataOnChannel(cricket::TransportChannel* channel, in CheckDataOnChannel() 707 Endpoint* GetEndpoint(cricket::TransportChannel* ch) { in GetEndpoint() 717 cricket::TransportChannel* ch) { in GetRemoteChannel() [all …]
|
D | session_unittest.cc | 775 explicit ChannelHandler(cricket::TransportChannel* p, const std::string& name) in ChannelHandler() 791 void OnReadableState(cricket::TransportChannel* p) { in OnReadableState() 796 void OnWritableState(cricket::TransportChannel* p) { in OnWritableState() 801 void OnReadPacket(cricket::TransportChannel* p, const char* buf, in OnReadPacket() 824 cricket::TransportChannel* channel; 974 const cricket::TransportChannel* channel = in HasChannel() 979 cricket::TransportChannel* GetChannel(const std::string& content_name, in GetChannel() 1371 cricket::TransportChannel* initiator_chan_a = initiator->chan_a->channel; in TestSession() 1372 cricket::TransportChannel* initiator_chan_b = initiator->chan_b->channel; in TestSession() 1383 cricket::TransportChannel* responder_chan_a = responder->chan_a->channel; in TestSession() [all …]
|
D | transport.cc | 524 void Transport::OnChannelReadableState(TransportChannel* channel) { in OnChannelReadableState() 538 void Transport::OnChannelWritableState(TransportChannel* channel) { in OnChannelWritableState() 626 void Transport::OnChannelRouteChange(TransportChannel* channel, in OnChannelRouteChange() 634 void Transport::OnChannelRouteChange_s(const TransportChannel* channel, in OnChannelRouteChange_s()
|
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() 524 TransportChannel* BaseSession::CreateChannel(const std::string& content_name, in CreateChannel() 534 TransportChannel* BaseSession::GetChannel(const std::string& content_name, in GetChannel()
|
D | fakesession.h | 465 virtual TransportChannel* CreateChannel( in CreateChannel()
|
/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 | 82 bool Init(TransportChannel* transport_channel, 83 TransportChannel* rtcp_transport_channel); 91 TransportChannel* transport_channel() const { in transport_channel() 94 TransportChannel* rtcp_transport_channel() const { in rtcp_transport_channel() 231 void SetReadyToSend(TransportChannel* channel, bool ready); 236 void set_rtcp_transport_channel(TransportChannel* transport); 260 void OnWritableState(TransportChannel* channel); 261 virtual void OnChannelRead(TransportChannel* channel, 266 void OnReadyToSend(TransportChannel* channel); 268 bool PacketIsRtcp(const TransportChannel* channel, const char* data, [all …]
|
D | channel.cc | 197 bool BaseChannel::Init(TransportChannel* transport_channel, in Init() 198 TransportChannel* rtcp_transport_channel) { in Init() 297 void BaseChannel::set_rtcp_transport_channel(TransportChannel* channel) { in set_rtcp_transport_channel() 343 TransportChannel* channel = NULL; in SetOption() 355 void BaseChannel::OnWritableState(TransportChannel* channel) { in OnWritableState() 365 void BaseChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead() 379 void BaseChannel::OnReadyToSend(TransportChannel* channel) { in OnReadyToSend() 383 void BaseChannel::SetReadyToSend(TransportChannel* channel, bool ready) { in SetReadyToSend() 403 bool BaseChannel::PacketIsRtcp(const TransportChannel* channel, in PacketIsRtcp() 432 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 | 64 void OnRouteChange(cricket::TransportChannel* channel, 66 void OnWritableState(cricket::TransportChannel* channel); 242 cricket::TransportChannel* channel, in OnRouteChange() 273 cricket::TransportChannel* channel) { in OnWritableState()
|