Home
last modified time | relevance | path

Searched defs:aEndpoint (Results 1 – 3 of 3) sorted by relevance

/external/openthread/src/core/api/
Dtcp_api.cpp46 otTcpEndpoint * aEndpoint, in otTcpEndpointInitialize()
52 otInstance *otTcpEndpointGetInstance(otTcpEndpoint *aEndpoint) in otTcpEndpointGetInstance()
57 void *otTcpEndpointGetContext(otTcpEndpoint *aEndpoint) in otTcpEndpointGetContext()
62 const otSockAddr *otTcpGetLocalAddress(const otTcpEndpoint *aEndpoint) in otTcpGetLocalAddress()
67 const otSockAddr *otTcpGetPeerAddress(const otTcpEndpoint *aEndpoint) in otTcpGetPeerAddress()
72 otError otTcpBind(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName) in otTcpBind()
77 otError otTcpConnect(otTcpEndpoint *aEndpoint, const otSockAddr *aSockName, uint32_t aFlags) in otTcpConnect()
82 otError otTcpSendByReference(otTcpEndpoint *aEndpoint, otLinkedBuffer *aBuffer, uint32_t aFlags) in otTcpSendByReference()
87 otError otTcpSendByExtension(otTcpEndpoint *aEndpoint, size_t aNumBytes, uint32_t aFlags) in otTcpSendByExtension()
92 otError otTcpReceiveByReference(otTcpEndpoint *aEndpoint, const otLinkedBuffer **aBuffer) in otTcpReceiveByReference()
[all …]
/external/openthread/src/cli/
Dcli_tcp.cpp334 void TcpExample::HandleTcpEstablishedCallback(otTcpEndpoint *aEndpoint) in HandleTcpEstablishedCallback()
339 void TcpExample::HandleTcpSendDoneCallback(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDoneCallback()
344 void TcpExample::HandleTcpReceiveAvailableCallback(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailableCallback()
353 void TcpExample::HandleTcpDisconnectedCallback(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aR… in HandleTcpDisconnectedCallback()
367 otTcpEndpoint * aEndpoint, in HandleTcpAcceptDoneCallback()
373 void TcpExample::HandleTcpEstablished(otTcpEndpoint *aEndpoint) in HandleTcpEstablished()
379 void TcpExample::HandleTcpSendDone(otTcpEndpoint *aEndpoint, otLinkedBuffer *aData) in HandleTcpSendDone()
419 void TcpExample::HandleTcpReceiveAvailable(otTcpEndpoint *aEndpoint, in HandleTcpReceiveAvailable()
449 void TcpExample::HandleTcpDisconnected(otTcpEndpoint *aEndpoint, otTcpDisconnectedReason aReason) in HandleTcpDisconnected()
502 void TcpExample::HandleTcpAcceptDone(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSo… in HandleTcpAcceptDone()
/external/openthread/src/core/net/
Dtcp6.cpp689 void Tcp::ProcessSignals(Endpoint & aEndpoint, in ProcessSignals()