Home
last modified time | relevance | path

Searched refs:PseudoTcpChannel (Results 1 – 4 of 4) sorted by relevance

/external/chromium/third_party/libjingle/source/talk/session/tunnel/
Dpseudotcpchannel.cc64 class PseudoTcpChannel::InternalStream : public StreamInterface {
66 InternalStream(PseudoTcpChannel* parent);
80 PseudoTcpChannel* parent_;
101 PseudoTcpChannel::PseudoTcpChannel(Thread* stream_thread, Session* session) in PseudoTcpChannel() function in cricket::PseudoTcpChannel
112 PseudoTcpChannel::~PseudoTcpChannel() { in ~PseudoTcpChannel()
121 bool PseudoTcpChannel::Connect(const std::string& content_name, in Connect()
137 &PseudoTcpChannel::OnChannelDestroyed); in Connect()
139 &PseudoTcpChannel::OnChannelWritableState); in Connect()
141 &PseudoTcpChannel::OnChannelRead); in Connect()
143 &PseudoTcpChannel::OnChannelConnectionChanged); in Connect()
[all …]
Dpseudotcpchannel.h64 class PseudoTcpChannel
70 PseudoTcpChannel(talk_base::Thread* stream_thread,
77 sigslot::signal1<PseudoTcpChannel*> SignalChannelClosed;
91 virtual ~PseudoTcpChannel();
Dtunnelsessionclient.h152 class PseudoTcpChannel; variable
171 virtual void OnChannelClosed(PseudoTcpChannel* channel);
175 PseudoTcpChannel* channel_;
Dtunnelsessionclient.cc309 channel_ = new PseudoTcpChannel(stream_thread, session_); in TunnelSession()
390 void TunnelSession::OnChannelClosed(PseudoTcpChannel* channel) { in OnChannelClosed()