Searched refs:aNumBytes (Results 1 – 4 of 4) sorted by relevance
/openthread-3.5.0/src/core/api/ |
D | tcp_api.cpp | 81 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension() argument 83 return AsCoreType(aEndpoint).SendByExtension(aNumBytes, aFlags); in otTcpSendByExtension() 93 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpCommitReceive() argument 95 return AsCoreType(aEndpoint).CommitReceive(aNumBytes, aFlags); in otTcpCommitReceive()
|
/openthread-3.5.0/include/openthread/ |
D | tcp.h | 474 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags); 525 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags);
|
/openthread-3.5.0/src/core/net/ |
D | tcp6.hpp | 244 Error SendByExtension(size_t aNumBytes, uint32_t aFlags); 295 Error CommitReceive(size_t aNumBytes, uint32_t aFlags);
|
D | tcp6.cpp | 224 Error Tcp::Endpoint::SendByExtension(size_t aNumBytes, uint32_t aFlags) in SendByExtension() argument 244 bsdError = tcp_usr_send(&tp, moreToCome ? 1 : 0, nullptr, aNumBytes, name); in SendByExtension() 247 PostCallbacksAfterSend(aNumBytes, backlogBefore); in SendByExtension() 272 Error Tcp::Endpoint::CommitReceive(size_t aNumBytes, uint32_t aFlags) in CommitReceive() argument 279 VerifyOrExit(cbuf_used_space(&tp.recvbuf) >= aNumBytes, error = kErrorFailed); in CommitReceive() 280 VerifyOrExit(aNumBytes > 0, error = kErrorNone); in CommitReceive() 282 cbuf_pop(&tp.recvbuf, aNumBytes); in CommitReceive()
|