Searched refs:aNumBytes (Results 1 – 4 of 4) sorted by relevance
/external/openthread/src/core/api/ |
D | tcp_api.cpp | 87 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension() argument 89 return AsCoreType(aEndpoint).SendByExtension(aNumBytes, aFlags); in otTcpSendByExtension() 102 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpCommitReceive() argument 104 return AsCoreType(aEndpoint).CommitReceive(aNumBytes, aFlags); in otTcpCommitReceive()
|
/external/openthread/include/openthread/ |
D | tcp.h | 469 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags); 520 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags);
|
/external/openthread/src/core/net/ |
D | tcp6.cpp | 205 Error Tcp::Endpoint::SendByExtension(size_t aNumBytes, uint32_t aFlags) in SendByExtension() argument 215 bsdError = tcp_usr_send(&tp, moreToCome ? 1 : 0, nullptr, aNumBytes); in SendByExtension() 218 PostCallbacksAfterSend(aNumBytes, backlogBefore); in SendByExtension() 239 Error Tcp::Endpoint::CommitReceive(size_t aNumBytes, uint32_t aFlags) in CommitReceive() argument 246 VerifyOrExit(cbuf_used_space(&tp.recvbuf) >= aNumBytes, error = kErrorFailed); in CommitReceive() 247 VerifyOrExit(aNumBytes > 0, error = kErrorNone); in CommitReceive() 249 cbuf_pop(&tp.recvbuf, aNumBytes); in CommitReceive()
|
D | tcp6.hpp | 235 Error SendByExtension(size_t aNumBytes, uint32_t aFlags); 286 Error CommitReceive(size_t aNumBytes, uint32_t aFlags);
|