Home
last modified time | relevance | path

Searched refs:otNetifAddress (Results 1 – 9 of 9) sorted by relevance

/openthread-latest/tests/unit/
Dtest_toolchain_c.c39 uint32_t otNetifAddress_Size_c() { return sizeof(otNetifAddress); } in otNetifAddress_Size_c()
41 uint32_t otNetifAddress_offset_mNext_c() { return offsetof(otNetifAddress, mNext); } in otNetifAddress_offset_mNext_c()
43 otNetifAddress CreateNetif_c() in CreateNetif_c()
45 otNetifAddress addr; in CreateNetif_c()
Dtest_toolchain.cpp43 otNetifAddress CreateNetif_c();
109 VerifyOrQuit(offsetof(otNetifAddress, mNext) == otNetifAddress_offset_mNext_c(), in test_addr_sizes()
111 …VerifyOrQuit(sizeof(otNetifAddress) == otNetifAddress_Size_c(), "otNetifAddress should the same in… in test_addr_sizes()
Dtest_dns_client.cpp597 otNetifAddress netifAddr; in TestDnsClient()
/openthread-latest/include/openthread/
Dip6.h169 typedef struct otNetifAddress struct
181 const struct otNetifAddress *mNext; ///< A pointer to the next network interface address. argument
182 } otNetifAddress; typedef
284 otError otIp6AddUnicastAddress(otInstance *aInstance, const otNetifAddress *aAddress);
305 const otNetifAddress *otIp6GetUnicastAddresses(otInstance *aInstance);
/openthread-latest/src/core/net/
Dnetif.hpp103 class UnicastAddress : public otNetifAddress,
652 DefineCoreType(otNetifAddress, Ip6::Netif::UnicastAddress);
/openthread-latest/src/core/api/
Dip6_api.cpp66 const otNetifAddress *otIp6GetUnicastAddresses(otInstance *aInstance) in otIp6GetUnicastAddresses()
76 otError otIp6AddUnicastAddress(otInstance *aInstance, const otNetifAddress *aAddress) in otIp6AddUnicastAddress()
/openthread-latest/src/posix/platform/
Dnetif.cpp1347 otNetifAddress netAddr; in processNetifAddrEvent()
1564 otNetifAddress netAddr; in processNetifAddrEvent()
/openthread-latest/src/cli/
Dcli.cpp3316 const otNetifAddress *unicastAddrs = otIp6GetUnicastAddresses(GetInstancePtr()); in Process()
3318 for (const otNetifAddress *addr = unicastAddrs; addr; addr = addr->mNext) in Process()
3343 otNetifAddress address; in Process()
/openthread-latest/src/ncp/
Dncp_base_mtd.cpp2014 …for (const otNetifAddress *address = otIp6GetUnicastAddresses(mInstance); address; address = addre… in HandlePropertyGet()
2033 otNetifAddress netifAddr; in HandlePropertyInsert()