Lines Matching refs:mSendBufferBytes
214 otTcpCircularSendBufferInitialize(&mSendBuffer, mSendBufferBytes, sizeof(mSendBufferBytes)); in Process()
511 mSendLink.mData = mSendBufferBytes; in Process()
512 mSendLink.mLength = OT_MIN(aArgs[0].GetLength(), sizeof(mSendBufferBytes)); in Process()
513 memcpy(mSendBufferBytes, aArgs[0].GetCString(), mSendLink.mLength); in Process()
611 (mBenchmarkBytesTotal + sizeof(mSendBufferBytes) - 1) / sizeof(mSendBufferBytes); in Process()
615 memset(mSendBufferBytes, 'a', sizeof(mSendBufferBytes)); in Process()
620 mBenchmarkLinks[i].mData = mSendBufferBytes; in Process()
621 mBenchmarkLinks[i].mLength = sizeof(mSendBufferBytes); in Process()
623 if (i == 0 && mBenchmarkBytesTotal % sizeof(mSendBufferBytes) != 0) in Process()
625 mBenchmarkLinks[i].mLength = mBenchmarkBytesTotal % sizeof(mSendBufferBytes); in Process()
867 if (mBenchmarkBytesUnsent >= OT_ARRAY_LENGTH(mBenchmarkLinks) * sizeof(mSendBufferBytes)) in HandleTcpSendDone()
869 aData->mLength = sizeof(mSendBufferBytes); in HandleTcpSendDone()