Searched refs:TransportChannelProxy (Results 1 – 4 of 4) sorted by relevance
/external/chromium/third_party/libjingle/source/talk/p2p/base/ |
D | transportchannelproxy.cc | 35 TransportChannelProxy::TransportChannelProxy(const std::string& name, in TransportChannelProxy() function in cricket::TransportChannelProxy 40 TransportChannelProxy::~TransportChannelProxy() { in ~TransportChannelProxy() 45 void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) { in SetImplementation() 48 this, &TransportChannelProxy::OnReadableState); in SetImplementation() 50 this, &TransportChannelProxy::OnWritableState); in SetImplementation() 51 impl_->SignalReadPacket.connect(this, &TransportChannelProxy::OnReadPacket); in SetImplementation() 52 impl_->SignalRouteChange.connect(this, &TransportChannelProxy::OnRouteChange); in SetImplementation() 61 int TransportChannelProxy::SendPacket(const char *data, size_t len) { in SendPacket() 66 int TransportChannelProxy::SetOption(talk_base::Socket::Option opt, int value) { in SetOption() 73 int TransportChannelProxy::GetError() { in GetError() [all …]
|
D | transportchannelproxy.h | 43 class TransportChannelProxy: public TransportChannel { 45 TransportChannelProxy(const std::string& name, const std::string &content_type); 46 virtual ~TransportChannelProxy(); 73 DISALLOW_EVIL_CONSTRUCTORS(TransportChannelProxy);
|
D | session.h | 50 class TransportChannelProxy; variable 110 typedef std::map<std::string, TransportChannelProxy*> ChannelMap; 112 TransportChannelProxy* GetProxy(const std::string& name); 115 void SetProxyImpl(const std::string& name, TransportChannelProxy* proxy);
|
D | session.cc | 84 TransportChannelProxy* channel = in CreateChannel() 85 new TransportChannelProxy(name, content_type); in CreateChannel() 134 TransportChannelProxy* TransportProxy::GetProxy(const std::string& name) { in GetProxy() 149 const std::string& name, TransportChannelProxy* proxy) { in SetProxyImpl()
|