Home
last modified time | relevance | path

Searched refs:aNetifIdentifier (Results 1 – 7 of 7) sorted by relevance

/openthread-latest/include/openthread/platform/
Dudp.h85 otError otPlatUdpBindToNetif(otUdpSocket *aUdpSocket, otNetifIdentifier aNetifIdentifier);
122 otNetifIdentifier aNetifIdentifier,
138 otNetifIdentifier aNetifIdentifier,
/openthread-latest/src/core/net/
Dudp6.cpp112 Error Udp::Socket::JoinNetifMulticastGroup(NetifIdentifier aNetifIdentifier, const Address &aAddres… in JoinNetifMulticastGroup() argument
114 OT_UNUSED_VARIABLE(aNetifIdentifier); in JoinNetifMulticastGroup()
122 error = Plat::JoinMulticastGroup(*this, aNetifIdentifier, aAddress); in JoinNetifMulticastGroup()
129 Error Udp::Socket::LeaveNetifMulticastGroup(NetifIdentifier aNetifIdentifier, const Address &aAddre… in LeaveNetifMulticastGroup() argument
131 OT_UNUSED_VARIABLE(aNetifIdentifier); in LeaveNetifMulticastGroup()
139 error = Plat::LeaveMulticastGroup(*this, aNetifIdentifier, aAddress); in LeaveNetifMulticastGroup()
Dudp6.hpp320 Error JoinNetifMulticastGroup(NetifIdentifier aNetifIdentifier, const Address &aAddress);
331 Error LeaveNetifMulticastGroup(NetifIdentifier aNetifIdentifier, const Address &aAddress);
/openthread-latest/src/posix/platform/
Dudp.cpp288 otError otPlatUdpBindToNetif(otUdpSocket *aUdpSocket, otNetifIdentifier aNetifIdentifier) in otPlatUdpBindToNetif() argument
295 switch (aNetifIdentifier) in otPlatUdpBindToNetif()
461 otNetifIdentifier aNetifIdentifier, in otPlatUdpJoinMulticastGroup() argument
473 switch (aNetifIdentifier) in otPlatUdpJoinMulticastGroup()
504 otNetifIdentifier aNetifIdentifier, in otPlatUdpLeaveMulticastGroup() argument
516 switch (aNetifIdentifier) in otPlatUdpLeaveMulticastGroup()
/openthread-latest/tests/unit/
Dtest_platform.cpp661 otError otPlatUdpBindToNetif(otUdpSocket *aUdpSocket, otNetifIdentifier aNetifIdentifier) in otPlatUdpBindToNetif() argument
664 OT_UNUSED_VARIABLE(aNetifIdentifier); in otPlatUdpBindToNetif()
682 otNetifIdentifier aNetifIdentifier, in otPlatUdpJoinMulticastGroup() argument
686 OT_UNUSED_VARIABLE(aNetifIdentifier); in otPlatUdpJoinMulticastGroup()
692 otNetifIdentifier aNetifIdentifier, in otPlatUdpLeaveMulticastGroup() argument
696 OT_UNUSED_VARIABLE(aNetifIdentifier); in otPlatUdpLeaveMulticastGroup()
/openthread-latest/src/core/coap/
Dcoap.hpp917 Error Start(uint16_t aPort, Ip6::NetifIdentifier aNetifIdentifier = Ip6::kNetifUnspecified);
Dcoap.cpp1673 Error Coap::Start(uint16_t aPort, Ip6::NetifIdentifier aNetifIdentifier) in Start() argument
1680 SuccessOrExit(error = mSocket.Open(aNetifIdentifier)); in Start()