Lines Matching refs:aEndpoint
76 typedef void (*otTcpEstablished)(otTcpEndpoint *aEndpoint);
90 typedef void (*otTcpSendDone)(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData);
159 typedef void (*otTcpForwardProgress)(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aBacklo…
179 typedef void (*otTcpReceiveAvailable)(otTcpEndpoint *aEndpoint,
211 typedef void (*otTcpDisconnected)(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason);
316 otTcpEndpoint *aEndpoint,
327 otInstance *otTcpEndpointGetInstance(otTcpEndpoint *aEndpoint);
337 void *otTcpEndpointGetContext(otTcpEndpoint *aEndpoint);
349 const otSockAddr *otTcpGetLocalAddress(const otTcpEndpoint *aEndpoint);
361 const otSockAddr *otTcpGetPeerAddress(const otTcpEndpoint *aEndpoint);
372 otError otTcpBind(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName);
403 otError otTcpConnect(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName, uint32_t aFlags);
436 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags);
451 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags);
468 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer);
484 otError otTcpReceiveContiguify(otTcpEndpoint *aEndpoint);
499 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags);
518 otError otTcpSendEndOfStream(otTcpEndpoint *aEndpoint);
535 otError otTcpAbort(otTcpEndpoint *aEndpoint);
555 otError otTcpEndpointDeinitialize(otTcpEndpoint *aEndpoint);
619 typedef void (*otTcpAcceptDone)(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSockAdd…