Home
last modified time | relevance | path

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

/openthread-latest/src/cli/
Dcli_tcp.cpp72 , mBenchmarkBytesTotal(0) in TcpExample()
478 VerifyOrExit(mBenchmarkBytesTotal == 0, error = OT_ERROR_BUSY); in Process()
553 if (mBenchmarkBytesTotal != 0) in Process()
587 VerifyOrExit(mBenchmarkBytesTotal == 0, error = OT_ERROR_BUSY); in Process()
591 mBenchmarkBytesTotal = OPENTHREAD_CONFIG_CLI_TCP_DEFAULT_BENCHMARK_SIZE; in Process()
595 SuccessOrExit(error = aArgs[1].ParseAsUint32(mBenchmarkBytesTotal)); in Process()
596 VerifyOrExit(mBenchmarkBytesTotal != 0, error = OT_ERROR_INVALID_ARGS); in Process()
602 mBenchmarkBytesUnsent = mBenchmarkBytesTotal; in Process()
611 (mBenchmarkBytesTotal + sizeof(mSendBufferBytes) - 1) / sizeof(mSendBufferBytes); in Process()
623 if (i == 0 && mBenchmarkBytesTotal % sizeof(mSendBufferBytes) != 0) in Process()
[all …]
Dcli_tcp.hpp150 uint32_t mBenchmarkBytesTotal; member in ot::Cli::TcpExample