Home
last modified time | relevance | path

Searched refs:mBenchmarkBytesUnsent (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/cli/
Dcli_tcp.cpp73 , mBenchmarkBytesUnsent(0) in TcpExample()
600 mBenchmarkBytesUnsent = mBenchmarkBytesTotal; in Process()
861 OT_ASSERT(mBenchmarkBytesUnsent >= aData->mLength); in HandleTcpSendDone()
863mBenchmarkBytesUnsent -= aData->mLength; // could be less than sizeof(mSendBufferBytes) for the fi… in HandleTcpSendDone()
865 if (mBenchmarkBytesUnsent >= OT_ARRAY_LENGTH(mBenchmarkLinks) * sizeof(mSendBufferBytes)) in HandleTcpSendDone()
875 else if (mBenchmarkBytesUnsent == 0) in HandleTcpSendDone()
900 if (mBenchmarkBytesUnsent != 0) in HandleTcpForwardProgress()
1037 mBenchmarkBytesUnsent = 0; in HandleTcpDisconnected()
1107 …while (mBenchmarkBytesUnsent != 0 && (freeSpace = otTcpCircularSendBufferGetFreeSpace(&mSendBuffer… in ContinueBenchmarkCircularSend()
1109 size_t toSendThisIteration = OT_MIN(mBenchmarkBytesUnsent, sBenchmarkDataLength); in ContinueBenchmarkCircularSend()
[all …]
Dcli_tcp.hpp154 uint32_t mBenchmarkBytesUnsent; member in ot::Cli::TcpExample