Searched refs:otTcpListener (Results 1 – 5 of 5) sorted by relevance
/openthread-2.7.6/include/openthread/ |
D | tcp.h | 534 struct otTcpListener; 535 typedef struct otTcpListener otTcpListener; typedef 580 typedef otTcpIncomingConnectionAction (*otTcpAcceptReady)(otTcpListener * aListener, 599 typedef void (*otTcpAcceptDone)(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSockAdd… 611 struct otTcpListener struct 613 struct otTcpListener *mNext; ///< A pointer to the next TCP listener (internal use only) argument 652 otError otTcpListenerInitialize(otInstance *aInstance, otTcpListener *aListener, otTcpListenerIniti… 663 otInstance *otTcpListenerGetInstance(otTcpListener *aListener); 674 void *otTcpListenerGetContext(otTcpListener *aListener); 687 otError otTcpListen(otTcpListener *aListener, const otSockAddr *aSockName); [all …]
|
/openthread-2.7.6/src/cli/ |
D | cli_tcp.hpp | 102 static otTcpIncomingConnectionAction HandleTcpAcceptReadyCallback(otTcpListener * aListener, 105 static void HandleTcpAcceptDoneCallback(otTcpListener * aListener, 116 otTcpIncomingConnectionAction HandleTcpAcceptReady(otTcpListener * aListener, 119 …void HandleTcpAcceptDone(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSockAddr *aPe… 140 otTcpListener mListener;
|
D | cli_tcp.cpp | 358 otTcpIncomingConnectionAction TcpExample::HandleTcpAcceptReadyCallback(otTcpListener * aListener, in HandleTcpAcceptReadyCallback() 366 void TcpExample::HandleTcpAcceptDoneCallback(otTcpListener * aListener, in HandleTcpAcceptDoneCallback() 488 otTcpIncomingConnectionAction TcpExample::HandleTcpAcceptReady(otTcpListener * aListener, in HandleTcpAcceptReady() 507 void TcpExample::HandleTcpAcceptDone(otTcpListener *aListener, otTcpEndpoint *aEndpoint, const otSo… in HandleTcpAcceptDone()
|
/openthread-2.7.6/src/core/api/ |
D | tcp_api.cpp | 150 otError otTcpListenerInitialize(otInstance *aInstance, otTcpListener *aListener, otTcpListenerIniti… in otTcpListenerInitialize() 157 otInstance *otTcpListenerGetInstance(otTcpListener *aListener) in otTcpListenerGetInstance() 164 void *otTcpListenerGetContext(otTcpListener *aListener) in otTcpListenerGetContext() 171 otError otTcpListen(otTcpListener *aListener, const otSockAddr *aSockName) in otTcpListen() 178 otError otTcpStopListening(otTcpListener *aListener) in otTcpStopListening() 185 otError otTcpListenerDeinitialize(otTcpListener *aListener) in otTcpListenerDeinitialize()
|
/openthread-2.7.6/src/core/net/ |
D | tcp6.hpp | 354 class Listener : public otTcpListener, public LinkedListEntry<Listener>
|