Searched refs:aPeerSockAddr (Results 1 – 11 of 11) sorted by relevance
/openthread-latest/src/core/net/ |
D | dns_dso.hpp | 63 …n "C" otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr); 74 …riend otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr); 388 const Ip6::SockAddr &aPeerSockAddr, 769 … bool Matches(const Ip6::SockAddr &aPeerSockAddr) const { return mPeerSockAddr == aPeerSockAddr; } in Matches() 807 typedef Connection *(*AcceptHandler)(Instance &aInstance, const Ip6::SockAddr &aPeerSockAddr); 837 Connection *FindClientConnection(const Ip6::SockAddr &aPeerSockAddr); 847 Connection *FindServerConnection(const Ip6::SockAddr &aPeerSockAddr); 900 Connection *AcceptConnection(const Ip6::SockAddr &aPeerSockAddr);
|
D | dns_dso.cpp | 53 …rn "C" otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr) in otPlatDsoAccept() argument 55 return AsCoreType(aInstance).Get<Dso>().AcceptConnection(AsCoreType(aPeerSockAddr)); in otPlatDsoAccept() 77 const Ip6::SockAddr &aPeerSockAddr, in Connection() argument 84 , mPeerSockAddr(aPeerSockAddr) in Connection() 1444 Dso::Connection *Dso::FindClientConnection(const Ip6::SockAddr &aPeerSockAddr) in FindClientConnection() argument 1446 return mClientConnections.FindMatching(aPeerSockAddr); in FindClientConnection() 1449 Dso::Connection *Dso::FindServerConnection(const Ip6::SockAddr &aPeerSockAddr) in FindServerConnection() argument 1451 return mServerConnections.FindMatching(aPeerSockAddr); in FindServerConnection() 1454 Dso::Connection *Dso::AcceptConnection(const Ip6::SockAddr &aPeerSockAddr) in AcceptConnection() argument 1459 connection = mAcceptHandler(GetInstance(), aPeerSockAddr); in AcceptConnection() [all …]
|
/openthread-latest/examples/platforms/simulation/ |
D | dso_transport.c | 41 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument 44 OT_UNUSED_VARIABLE(aPeerSockAddr); in otPlatDsoConnect()
|
D | trel.c | 255 const otSockAddr *aPeerSockAddr, in otPlatTrelNotifyPeerSocketAddressDifference() argument 259 OT_UNUSED_VARIABLE(aPeerSockAddr); in otPlatTrelNotifyPeerSocketAddressDifference()
|
/openthread-latest/include/openthread/platform/ |
D | dso_transport.h | 94 extern otPlatDsoConnection *otPlatDsoAccept(otInstance *aInstance, const otSockAddr *aPeerSockAddr); 105 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr);
|
D | trel.h | 152 const otSockAddr *aPeerSockAddr,
|
/openthread-latest/src/posix/platform/ |
D | trel.cpp | 432 OT_TOOL_WEAK void trelDnssdNotifyPeerSocketAddressDifference(const otSockAddr *aPeerSockAddr, in trelDnssdNotifyPeerSocketAddressDifference() argument 447 OT_UNUSED_VARIABLE(aPeerSockAddr); in trelDnssdNotifyPeerSocketAddressDifference() 571 const otSockAddr *aPeerSockAddr, in otPlatTrelNotifyPeerSocketAddressDifference() argument 576 trelDnssdNotifyPeerSocketAddressDifference(aPeerSockAddr, aRxSockAddr); in otPlatTrelNotifyPeerSocketAddressDifference()
|
/openthread-latest/tests/unit/ |
D | test_dso.cpp | 119 const Ip6::SockAddr &aPeerSockAddr) in Connection() argument 120 : Dso::Connection(aInstance, aPeerSockAddr, sCallbacks) in Connection() 376 void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument 380 const Ip6::SockAddr &peerSockAddr = AsCoreType(aPeerSockAddr); in otPlatDsoConnect() 393 …onn = static_cast<Connection *>(otPlatDsoAccept(otPlatDsoGetInstance(aConnection), aPeerSockAddr)); in otPlatDsoConnect() 476 Dso::Connection *AcceptConnection(Instance &aInstance, const Ip6::SockAddr &aPeerSockAddr) in AcceptConnection() argument 482 Log(" AcceptConnection(peer:0x%04x)", aPeerSockAddr.GetPort()); in AcceptConnection() 486 if (conn->GetLocalSockAddr() == aPeerSockAddr) in AcceptConnection()
|
D | test_platform.cpp | 622 …_TOOL_WEAK void otPlatDsoConnect(otPlatDsoConnection *aConnection, const otSockAddr *aPeerSockAddr) in otPlatDsoConnect() argument 625 OT_UNUSED_VARIABLE(aPeerSockAddr); in otPlatDsoConnect()
|
/openthread-latest/src/core/radio/ |
D | trel_interface.cpp | 117 void Interface::NotifyPeerSocketAddressDifference(const Ip6::SockAddr &aPeerSockAddr, const Ip6::So… in NotifyPeerSocketAddressDifference() argument 119 otPlatTrelNotifyPeerSocketAddressDifference(&GetInstance(), &aPeerSockAddr, &aRxSockAddr); in NotifyPeerSocketAddressDifference()
|
D | trel_interface.hpp | 275 …void NotifyPeerSocketAddressDifference(const Ip6::SockAddr &aPeerSockAddr, const Ip6::SockAddr &aR…
|