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()
476 VerifyOrExit(mBenchmarkBytesTotal == 0, error = OT_ERROR_BUSY); in Process()
551 if (mBenchmarkBytesTotal != 0) in Process()
585 VerifyOrExit(mBenchmarkBytesTotal == 0, error = OT_ERROR_BUSY); in Process()
589 mBenchmarkBytesTotal = OPENTHREAD_CONFIG_CLI_TCP_DEFAULT_BENCHMARK_SIZE; in Process()
593 SuccessOrExit(error = aArgs[1].ParseAsUint32(mBenchmarkBytesTotal)); in Process()
594 VerifyOrExit(mBenchmarkBytesTotal != 0, error = OT_ERROR_INVALID_ARGS); in Process()
600 mBenchmarkBytesUnsent = mBenchmarkBytesTotal; in Process()
609 (mBenchmarkBytesTotal + sizeof(mSendBufferBytes) - 1) / sizeof(mSendBufferBytes); in Process()
621 if (i == 0 && mBenchmarkBytesTotal % sizeof(mSendBufferBytes) != 0) in Process()
[all …]
Dcli_tcp.hpp153 uint32_t mBenchmarkBytesTotal; member in ot::Cli::TcpExample