Searched refs:aNumBytes (Results 1 – 4 of 4) sorted by relevance
/openthread-latest/src/core/api/ |
D | tcp_api.cpp | 78 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension() argument 80 return AsCoreType(aEndpoint).SendByExtension(aNumBytes, aFlags); in otTcpSendByExtension() 90 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpCommitReceive() argument 92 return AsCoreType(aEndpoint).CommitReceive(aNumBytes, aFlags); in otTcpCommitReceive()
|
/openthread-latest/include/openthread/ |
D | tcp.h | 451 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags); 499 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags);
|
/openthread-latest/src/core/net/ |
D | tcp6.hpp | 232 Error SendByExtension(size_t aNumBytes, uint32_t aFlags); 281 Error CommitReceive(size_t aNumBytes, uint32_t aFlags);
|
D | tcp6.cpp | 209 Error Tcp::Endpoint::SendByExtension(size_t aNumBytes, uint32_t aFlags) in SendByExtension() argument 229 bsdError = tcp_usr_send(&tp, moreToCome ? 1 : 0, nullptr, aNumBytes, name); in SendByExtension() 232 PostCallbacksAfterSend(aNumBytes, backlogBefore); in SendByExtension() 257 Error Tcp::Endpoint::CommitReceive(size_t aNumBytes, uint32_t aFlags) in CommitReceive() argument 264 VerifyOrExit(cbuf_used_space(&tp.recvbuf) >= aNumBytes, error = kErrorFailed); in CommitReceive() 265 VerifyOrExit(aNumBytes > 0, error = kErrorNone); in CommitReceive() 267 cbuf_pop(&tp.recvbuf, aNumBytes); in CommitReceive()
|