OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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);