HomeSort by relevance Sort by last modified time
    Searched refs:TransportChannel (Results 1 - 15 of 15) sorted by null

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
transportchannel.cc 29 #include "talk/p2p/base/transportchannel.h"
33 std::string TransportChannel::ToString() const {
42 void TransportChannel::set_readable(bool readable) {
49 void TransportChannel::set_writable(bool writable) {
transportchannel.h 40 // A TransportChannel represents one logical stream of packets that are sent
42 class TransportChannel: public sigslot::has_slots<> {
44 TransportChannel(const std::string& name, const std::string &content_type)
47 virtual ~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);
    [all...]
transportchannelproxy.h 33 #include "talk/p2p/base/transportchannel.h"
43 class TransportChannelProxy: public TransportChannel {
53 // Implementation of the TransportChannel interface. These simply forward to
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);
transportchannelimpl.h 32 #include "talk/p2p/base/transportchannel.h"
41 // Base class for real implementations of TransportChannel. This includes some
44 class TransportChannelImpl : public TransportChannel {
47 : TransportChannel(name, content_type) {}
transportchannelproxy.cc 37 : TransportChannel(name, content_type), impl_(NULL) {
85 void TransportChannelProxy::OnReadableState(TransportChannel* channel) {
90 void TransportChannelProxy::OnWritableState(TransportChannel* channel) {
95 void TransportChannelProxy::OnReadPacket(TransportChannel* channel,
101 void TransportChannelProxy::OnRouteChange(TransportChannel* channel,
transport.h 74 class TransportChannel;
215 void OnChannelReadableState(TransportChannel* channel);
216 void OnChannelWritableState(TransportChannel* channel);
session.h 49 class TransportChannel;
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,
session.cc 74 TransportChannel* TransportProxy::GetChannel(const std::string& name) {
78 TransportChannel* TransportProxy::CreateChannel(
97 TransportChannel* channel = GetChannel(name);
516 TransportChannel* Session::CreateChannel(const std::string& content_name,
525 TransportChannel* Session::GetChannel(const std::string& content_name,
    [all...]
transport.cc 315 void Transport::OnChannelReadableState(TransportChannel* channel) {
329 void Transport::OnChannelWritableState(TransportChannel* channel) {
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.h 43 class TransportChannel;
52 // the TransportChannel is signalled to tear-down. Once the channel is
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_;
pseudotcpchannel.cc 34 #include "talk/p2p/base/transportchannel.h"
167 void PseudoTcpChannel::OnChannelDestroyed(TransportChannel* channel) {
318 void PseudoTcpChannel::OnChannelWritableState(TransportChannel* channel) {
339 void PseudoTcpChannel::OnChannelRead(TransportChannel* channel,
357 void PseudoTcpChannel::OnChannelConnectionChanged(TransportChannel* channel,
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
socketmonitor.h 61 SocketMonitor(TransportChannel* channel,
81 TransportChannel* channel_;
socketmonitor.cc 38 SocketMonitor::SocketMonitor(TransportChannel* channel,
  /external/chromium/third_party/libjingle/source/talk/session/phone/
channel.h 86 TransportChannel* transport_channel);
92 TransportChannel* transport_channel() const {
95 TransportChannel* rtcp_transport_channel() const {
140 void set_rtcp_transport_channel(TransportChannel* transport);
160 // From TransportChannel
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
    [all...]
channel.cc 34 #include "talk/p2p/base/transportchannel.h"
93 TransportChannel* transport_channel)
194 void BaseChannel::set_rtcp_transport_channel(TransportChannel* channel) {
226 void BaseChannel::OnWritableState(TransportChannel* channel) {
236 void BaseChannel::OnChannelRead(TransportChannel* channel,
269 TransportChannel* channel = (!rtcp || rtcp_mux_filter_.IsActive()) ?
722 void VoiceChannel::OnChannelRead(TransportChannel* channel,
    [all...]

Completed in 108 milliseconds