Searched refs:TransportChannel (Results 1 – 15 of 15) sorted by relevance
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
D | transportchannel.h | 42 class TransportChannel: public sigslot::has_slots<> { 44 TransportChannel(const std::string& name, const std::string &content_type) in TransportChannel() function 47 virtual ~TransportChannel() {} in ~TransportChannel() 58 sigslot::signal1<TransportChannel*> SignalReadableState; 59 sigslot::signal1<TransportChannel*> SignalWritableState; 77 sigslot::signal3<TransportChannel*, const char*, size_t> SignalReadPacket; 83 sigslot::signal2<TransportChannel*, const talk_base::SocketAddress&> 87 sigslot::signal1<TransportChannel*> SignalDestroyed; 105 DISALLOW_EVIL_CONSTRUCTORS(TransportChannel);
|
D | transportchannelproxy.h | 43 class TransportChannelProxy: public TransportChannel { 68 void OnReadableState(TransportChannel* channel); 69 void OnWritableState(TransportChannel* channel); 70 void OnReadPacket(TransportChannel* channel, const char* data, size_t size); 71 void OnRouteChange(TransportChannel* channel, const talk_base::SocketAddress& address);
|
D | transportchannelproxy.cc | 37 : TransportChannel(name, content_type), impl_(NULL) { in TransportChannelProxy() 85 void TransportChannelProxy::OnReadableState(TransportChannel* channel) { in OnReadableState() 90 void TransportChannelProxy::OnWritableState(TransportChannel* channel) { in OnWritableState() 95 void TransportChannelProxy::OnReadPacket(TransportChannel* channel, in OnReadPacket() 101 void TransportChannelProxy::OnRouteChange(TransportChannel* channel, in OnRouteChange()
|
D | transportchannel.cc | 33 std::string TransportChannel::ToString() const { in ToString() 42 void TransportChannel::set_readable(bool readable) { in set_readable() 49 void TransportChannel::set_writable(bool writable) { in set_writable()
|
D | transportchannelimpl.h | 44 class TransportChannelImpl : public TransportChannel { 47 : TransportChannel(name, content_type) {} in TransportChannelImpl()
|
D | session.h | 49 class TransportChannel; variable 94 TransportChannel* GetChannel(const std::string& name); 95 TransportChannel* CreateChannel(const std::string& name, 195 virtual TransportChannel* CreateChannel(const std::string& content_name, 199 virtual TransportChannel* GetChannel(const std::string& content_name, 355 virtual TransportChannel* CreateChannel(const std::string& content_name, 359 virtual TransportChannel* GetChannel(const std::string& content_name,
|
D | transport.h | 74 class TransportChannel; variable 215 void OnChannelReadableState(TransportChannel* channel); 216 void OnChannelWritableState(TransportChannel* channel);
|
D | session.cc | 74 TransportChannel* TransportProxy::GetChannel(const std::string& name) { in GetChannel() 78 TransportChannel* TransportProxy::CreateChannel( in CreateChannel() 97 TransportChannel* channel = GetChannel(name); in DestroyChannel() 516 TransportChannel* Session::CreateChannel(const std::string& content_name, in CreateChannel() 525 TransportChannel* Session::GetChannel(const std::string& content_name, in GetChannel()
|
D | transport.cc | 315 void Transport::OnChannelReadableState(TransportChannel* channel) { in OnChannelReadableState() 329 void Transport::OnChannelWritableState(TransportChannel* channel) { in OnChannelWritableState()
|
/external/chromium/third_party/libjingle/source/talk/session/tunnel/ |
D | pseudotcpchannel.h | 43 class TransportChannel; variable 107 void OnChannelDestroyed(TransportChannel* channel); 110 void OnChannelWritableState(TransportChannel* channel); 111 void OnChannelRead(TransportChannel* channel, const char* data, size_t size); 112 void OnChannelConnectionChanged(TransportChannel* channel, 125 TransportChannel* channel_;
|
D | pseudotcpchannel.cc | 167 void PseudoTcpChannel::OnChannelDestroyed(TransportChannel* channel) { in OnChannelDestroyed() 318 void PseudoTcpChannel::OnChannelWritableState(TransportChannel* channel) { in OnChannelWritableState() 339 void PseudoTcpChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead() 357 void PseudoTcpChannel::OnChannelConnectionChanged(TransportChannel* channel, in OnChannelConnectionChanged()
|
/external/chromium/third_party/libjingle/source/talk/session/phone/ |
D | channel.h | 86 TransportChannel* transport_channel); 92 TransportChannel* transport_channel() const { in transport_channel() 95 TransportChannel* rtcp_transport_channel() const { in rtcp_transport_channel() 140 void set_rtcp_transport_channel(TransportChannel* transport); 161 void OnWritableState(TransportChannel* channel); 162 void OnChannelRead(TransportChannel* channel, const char *data, size_t len); 241 TransportChannel *transport_channel_; 242 TransportChannel *rtcp_transport_channel_; 331 virtual void OnChannelRead(TransportChannel* channel,
|
D | channel.cc | 93 TransportChannel* transport_channel) in BaseChannel() 194 void BaseChannel::set_rtcp_transport_channel(TransportChannel* channel) { in set_rtcp_transport_channel() 226 void BaseChannel::OnWritableState(TransportChannel* channel) { in OnWritableState() 236 void BaseChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead() 269 TransportChannel* channel = (!rtcp || rtcp_mux_filter_.IsActive()) ? in SendPacket() 722 void VoiceChannel::OnChannelRead(TransportChannel* channel, in OnChannelRead()
|
/external/chromium/third_party/libjingle/source/talk/p2p/client/ |
D | socketmonitor.h | 61 SocketMonitor(TransportChannel* channel, 81 TransportChannel* channel_;
|
D | socketmonitor.cc | 38 SocketMonitor::SocketMonitor(TransportChannel* channel, in SocketMonitor()
|