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()
602 mBenchmarkBytesUnsent = mBenchmarkBytesTotal; in Process()
863 OT_ASSERT(mBenchmarkBytesUnsent >= aData->mLength); in HandleTcpSendDone()
865mBenchmarkBytesUnsent -= aData->mLength; // could be less than sizeof(mSendBufferBytes) for the fi… in HandleTcpSendDone()
867 if (mBenchmarkBytesUnsent >= OT_ARRAY_LENGTH(mBenchmarkLinks) * sizeof(mSendBufferBytes)) in HandleTcpSendDone()
877 else if (mBenchmarkBytesUnsent == 0) in HandleTcpSendDone()
902 if (mBenchmarkBytesUnsent != 0) in HandleTcpForwardProgress()
1039 mBenchmarkBytesUnsent = 0; in HandleTcpDisconnected()
1109 …while (mBenchmarkBytesUnsent != 0 && (freeSpace = otTcpCircularSendBufferGetFreeSpace(&mSendBuffer… in ContinueBenchmarkCircularSend()
1111 size_t toSendThisIteration = OT_MIN(mBenchmarkBytesUnsent, sBenchmarkDataLength); in ContinueBenchmarkCircularSend()
[all …]
Dcli_tcp.hpp151 uint32_t mBenchmarkBytesUnsent; member in ot::Cli::TcpExample