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

  /external/chromium/third_party/libjingle/source/talk/p2p/base/
pseudotcp.h 38 // IPseudoTcpNotify
43 class IPseudoTcpNotify {
45 virtual ~IPseudoTcpNotify() {}
66 PseudoTcp(IPseudoTcpNotify* notify, uint32 conv);
143 IPseudoTcpNotify::WriteResult packet(uint32 seq, uint8 flags,
159 IPseudoTcpNotify* m_notify;
pseudotcp.cc 221 PseudoTcp::PseudoTcp(IPseudoTcpNotify* notify, uint32 conv)
481 IPseudoTcpNotify::WriteResult PseudoTcp::packet(uint32 seq, uint8 flags,
513 IPseudoTcpNotify::WriteResult wres = m_notify->TcpWritePacket(this, reinterpret_cast<char *>(buffer), len + HEADER_SIZE);
517 if ((wres != IPseudoTcpNotify::WR_SUCCESS) && (NULL != data))
527 return IPseudoTcpNotify::WR_SUCCESS;
909 IPseudoTcpNotify::WriteResult wres = this->packet(seq, flags, buffer, nTransmit);
911 if (wres == IPseudoTcpNotify::WR_SUCCESS)
914 if (wres == IPseudoTcpNotify::WR_FAIL) {
919 ASSERT(wres == IPseudoTcpNotify::WR_TOO_LARGE);
  /external/chromium/third_party/libjingle/source/talk/session/tunnel/
pseudotcpchannel.h 65 : public IPseudoTcpNotify,
119 virtual IPseudoTcpNotify::WriteResult TcpWritePacket(PseudoTcp* tcp,
pseudotcpchannel.cc 491 IPseudoTcpNotify::WriteResult PseudoTcpChannel::TcpWritePacket(
499 return IPseudoTcpNotify::WR_SUCCESS;
502 return IPseudoTcpNotify::WR_SUCCESS;
505 return IPseudoTcpNotify::WR_TOO_LARGE;
509 return IPseudoTcpNotify::WR_FAIL;

Completed in 164 milliseconds