Lines Matching refs:aEndpoint
43 otTcpEndpoint *aEndpoint, in otTcpEndpointInitialize() argument
46 return AsCoreType(aEndpoint).Initialize(AsCoreType(aInstance), *aArgs); in otTcpEndpointInitialize()
49 otInstance *otTcpEndpointGetInstance(otTcpEndpoint *aEndpoint) { return &AsCoreType(aEndpoint).GetI… in otTcpEndpointGetInstance() argument
51 void *otTcpEndpointGetContext(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).GetContext()… in otTcpEndpointGetContext() argument
53 const otSockAddr *otTcpGetLocalAddress(const otTcpEndpoint *aEndpoint) in otTcpGetLocalAddress() argument
55 return &AsCoreType(aEndpoint).GetLocalAddress(); in otTcpGetLocalAddress()
58 const otSockAddr *otTcpGetPeerAddress(const otTcpEndpoint *aEndpoint) in otTcpGetPeerAddress() argument
60 return &AsCoreType(aEndpoint).GetPeerAddress(); in otTcpGetPeerAddress()
63 otError otTcpBind(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName) in otTcpBind() argument
65 return AsCoreType(aEndpoint).Bind(AsCoreType(aSockName)); in otTcpBind()
68 otError otTcpConnect(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName, uint32_t aFlags) in otTcpConnect() argument
70 return AsCoreType(aEndpoint).Connect(AsCoreType(aSockName), aFlags); in otTcpConnect()
73 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags) in otTcpSendByReference() argument
75 return AsCoreType(aEndpoint).SendByReference(*aBuffer, aFlags); in otTcpSendByReference()
78 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension() argument
80 return AsCoreType(aEndpoint).SendByExtension(aNumBytes, aFlags); in otTcpSendByExtension()
83 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer) in otTcpReceiveByReference() argument
85 return AsCoreType(aEndpoint).ReceiveByReference(*aBuffer); in otTcpReceiveByReference()
88 otError otTcpReceiveContiguify(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).ReceiveCont… in otTcpReceiveContiguify() argument
90 otError otTcpCommitReceive(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpCommitReceive() argument
92 return AsCoreType(aEndpoint).CommitReceive(aNumBytes, aFlags); in otTcpCommitReceive()
95 otError otTcpSendEndOfStream(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).SendEndOfStre… in otTcpSendEndOfStream() argument
97 otError otTcpAbort(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).Abort(); } in otTcpAbort() argument
99 otError otTcpEndpointDeinitialize(otTcpEndpoint *aEndpoint) { return AsCoreType(aEndpoint).Deinitia… in otTcpEndpointDeinitialize() argument