Searched refs:TransportChannelProxy (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
D | transportchannelproxy.cc | 41 TransportChannelProxy::TransportChannelProxy(const std::string& content_name, in TransportChannelProxy() function in cricket::TransportChannelProxy 50 TransportChannelProxy::~TransportChannelProxy() { in ~TransportChannelProxy() 57 void TransportChannelProxy::SetImplementation(TransportChannelImpl* impl) { in SetImplementation() 77 this, &TransportChannelProxy::OnReadableState); in SetImplementation() 79 this, &TransportChannelProxy::OnWritableState); in SetImplementation() 81 this, &TransportChannelProxy::OnReadPacket); in SetImplementation() 83 this, &TransportChannelProxy::OnReadyToSend); in SetImplementation() 85 this, &TransportChannelProxy::OnRouteChange); in SetImplementation() 103 int TransportChannelProxy::SendPacket(const char* data, size_t len, in SendPacket() 114 int TransportChannelProxy::SetOption(rtc::Socket::Option opt, int value) { in SetOption() [all …]
|
D | transportchannelproxy.h | 50 class TransportChannelProxy : public TransportChannel, 53 TransportChannelProxy(const std::string& content_name, 56 virtual ~TransportChannelProxy(); 107 DISALLOW_EVIL_CONSTRUCTORS(TransportChannelProxy);
|
D | session.h | 55 class TransportChannelProxy; variable 88 typedef std::map<int, TransportChannelProxy*> ChannelMap; 182 TransportChannelProxy* GetChannelProxy(int component) const; 183 TransportChannelProxy* GetChannelProxyByName(const std::string& name) const; 190 TransportChannelProxy* proxy); 192 TransportChannelProxy* proxy); 193 void ReplaceChannelProxyImpl(TransportChannelProxy* proxy, 195 void ReplaceChannelProxyImpl_w(TransportChannelProxy* proxy,
|
D | session.cc | 83 TransportChannelProxy* channel = in CreateChannel() 84 new TransportChannelProxy(content_name(), name, component); in CreateChannel() 162 const TransportChannelProxy* channel = GetChannelProxy(component); in GetChannelNameFromComponent() 173 const TransportChannelProxy* channel = GetChannelProxyByName(channel_name); in GetComponentFromChannelName() 182 TransportChannelProxy* TransportProxy::GetChannelProxy(int component) const { in GetChannelProxy() 187 TransportChannelProxy* TransportProxy::GetChannelProxyByName( in GetChannelProxyByName() 216 int component, TransportChannelProxy* transproxy) { in SetupChannelProxy() 222 int component, TransportChannelProxy* transproxy) { in SetupChannelProxy_w() 229 void TransportProxy::ReplaceChannelProxyImpl(TransportChannelProxy* proxy, in ReplaceChannelProxyImpl() 235 void TransportProxy::ReplaceChannelProxyImpl_w(TransportChannelProxy* proxy, in ReplaceChannelProxyImpl_w()
|
D | session_unittest.cc | 1375 cricket::TransportChannelProxy* initiator_proxy_chan_a = in TestSession() 1376 static_cast<cricket::TransportChannelProxy*>(initiator_chan_a); in TestSession() 1377 cricket::TransportChannelProxy* initiator_proxy_chan_b = in TestSession() 1378 static_cast<cricket::TransportChannelProxy*>(initiator_chan_b); in TestSession() 1387 cricket::TransportChannelProxy* responder_proxy_chan_a = in TestSession() 1388 static_cast<cricket::TransportChannelProxy*>(responder_chan_a); in TestSession() 1389 cricket::TransportChannelProxy* responder_proxy_chan_b = in TestSession() 1390 static_cast<cricket::TransportChannelProxy*>(responder_chan_b); in TestSession()
|