Home
last modified time | relevance | path

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

/openthread-latest/src/core/thread/
Dthread_tlvs.hpp293 static constexpr uint8_t kMaxAddresses = OT_IP6_MAX_MLR_ADDRESSES; member in ot::Ip6AddressesTlv
309 GetLength() <= sizeof(Ip6::Address) * Ip6AddressesTlv::kMaxAddresses && in IsValid()
Dmlr_manager.hpp143 class AddressArray : public Array<Ip6::Address, Ip6AddressesTlv::kMaxAddresses>
Dmlr_manager.cpp315 …VerifyOrExit(aAddressNum > 0 && aAddressNum <= Ip6AddressesTlv::kMaxAddresses, error = kErrorInval… in RegisterMulticastListeners()
490 … VerifyOrExit(offsetRange.GetLength() / sizeof(Ip6::Address) <= Ip6AddressesTlv::kMaxAddresses, in ParseMlrResponse()
/openthread-latest/tests/unit/
Dtest_netif.cpp90 const uint8_t kMaxAddresses = 8; in TestNetifMulticastAddresses() local
94 Ip6::Address addresses[kMaxAddresses]; in TestNetifMulticastAddresses()
Dtest_dns_client.cpp359 static constexpr uint16_t kMaxAddresses = 10; variable
368 Ip6::Address mHostAddresses[kMaxAddresses];
396 VerifyOrQuit(index < kMaxAddresses); in AddressCallback()
/openthread-latest/src/core/backbone_router/
Dbbr_manager.cpp143 Ip6::Address addresses[Ip6AddressesTlv::kMaxAddresses]; in HandleMulticastListenerRegistration()
183 VerifyOrExit(offsetRange.GetLength() / sizeof(Ip6::Address) <= Ip6AddressesTlv::kMaxAddresses, in HandleMulticastListenerRegistration()
221 addresses[Ip6AddressesTlv::kMaxAddresses - (++successAddressNum)] = address; in HandleMulticastListenerRegistration()
255 addresses[Ip6AddressesTlv::kMaxAddresses - (++successAddressNum)] = address; in HandleMulticastListenerRegistration()
268 …SendBackboneMulticastListenerRegistration(&addresses[Ip6AddressesTlv::kMaxAddresses - successAddre… in HandleMulticastListenerRegistration()
318 …RT(aAddressNum >= Ip6AddressesTlv::kMinAddresses && aAddressNum <= Ip6AddressesTlv::kMaxAddresses); in SendBackboneMulticastListenerRegistration()
/openthread-latest/src/cli/
Dcli_mdns.hpp86 static constexpr uint16_t kMaxAddresses = 16; member in ot::Cli::Mdns
Dcli_mdns.cpp230 otIp6Address addresses[kMaxAddresses]; in ProcessRegisterHost()
247 VerifyOrExit(host.mAddressesLength < kMaxAddresses, error = OT_ERROR_NO_BUFS); in ProcessRegisterHost()
/openthread-latest/src/ncp/
Dncp_base_mtd.cpp330 VerifyOrExit(addressesCount < Ip6AddressesTlv::kMaxAddresses, error = OT_ERROR_NO_BUFS); in HandlePropertySet()