Lines Matching refs:aEndpoint
787 void TcpExample::HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint) in HandleTcpEstablishedCallback() argument
789 static_cast<TcpExample *>(otTcpEndpointGetContext(aEndpoint))->HandleTcpEstablished(aEndpoint); in HandleTcpEstablishedCallback()
792 void TcpExample::HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDoneCallback() argument
794 …static_cast<TcpExample *>(otTcpEndpointGetContext(aEndpoint))->HandleTcpSendDone(aEndpoint, aData); in HandleTcpSendDoneCallback()
797 void TcpExample::HandleTcpForwardProgressCallback(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, s… in HandleTcpForwardProgressCallback() argument
799 static_cast<TcpExample *>(otTcpEndpointGetContext(aEndpoint)) in HandleTcpForwardProgressCallback()
800 ->HandleTcpForwardProgress(aEndpoint, aInSendBuffer, aBacklog); in HandleTcpForwardProgressCallback()
803 void TcpExample::HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailableCallback() argument
808 static_cast<TcpExample *>(otTcpEndpointGetContext(aEndpoint)) in HandleTcpReceiveAvailableCallback()
809 ->HandleTcpReceiveAvailable(aEndpoint, aBytesAvailable, aEndOfStream, aBytesRemaining); in HandleTcpReceiveAvailableCallback()
812 void TcpExample::HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aR… in HandleTcpDisconnectedCallback() argument
814 …static_cast<TcpExample *>(otTcpEndpointGetContext(aEndpoint))->HandleTcpDisconnected(aEndpoint, aR… in HandleTcpDisconnectedCallback()
826 otTcpEndpoint *aEndpoint, in HandleTcpAcceptDoneCallback() argument
829 …cpExample *>(otTcpListenerGetContext(aListener))->HandleTcpAcceptDone(aListener, aEndpoint, aPeer); in HandleTcpAcceptDoneCallback()
832 void TcpExample::HandleTcpEstablished(otTcpEndpoint *aEndpoint) in HandleTcpEstablished() argument
834 OT_UNUSED_VARIABLE(aEndpoint); in HandleTcpEstablished()
845 void TcpExample::HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDone() argument
847 OT_UNUSED_VARIABLE(aEndpoint); in HandleTcpSendDone()
884 void TcpExample::HandleTcpForwardProgress(otTcpEndpoint *aEndpoint, size_t aInSendBuffer, size_t aB… in HandleTcpForwardProgress() argument
886 OT_UNUSED_VARIABLE(aEndpoint); in HandleTcpForwardProgress()
915 void TcpExample::HandleTcpReceiveAvailable(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailable() argument
921 OT_ASSERT(aEndpoint == &mEndpoint); in HandleTcpReceiveAvailable()
978 IgnoreError(otTcpReceiveByReference(aEndpoint, &data)); in HandleTcpReceiveAvailable()
988 IgnoreReturnValue(otTcpCommitReceive(aEndpoint, totalReceived, 0)); in HandleTcpReceiveAvailable()
1003 void TcpExample::HandleTcpDisconnected(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason) in HandleTcpDisconnected() argument
1013 OT_UNUSED_VARIABLE(aEndpoint); in HandleTcpDisconnected()
1094 void TcpExample::HandleTcpAcceptDone(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSo… in HandleTcpAcceptDone() argument
1097 OT_UNUSED_VARIABLE(aEndpoint); in HandleTcpAcceptDone()