Home
last modified time | relevance | path

Searched refs:mAddressesLength (Results 1 – 11 of 11) sorted by relevance

/openthread-latest/tests/unit/
Dtest_spinel_prop_codec.cpp68 dnssdHostEncode.mAddressesLength = 1; in TestDnssd()
86 VerifyOrQuit(dnssdHostDecode.mAddressesLength == dnssdHostEncode.mAddressesLength); in TestDnssd()
88 dnssdHostDecode.mAddressesLength * sizeof(otIp6Address)) == 0); in TestDnssd()
Dtest_dnssd_discovery_proxy.cpp672 Log(" numAddresses : %u", aResult.mAddressesLength); in InvokeIp6AddrResolverCallback()
673 for (uint16_t index = 0; index < aResult.mAddressesLength; index++) in InvokeIp6AddrResolverCallback()
687 Log(" numAddresses : %u", aResult.mAddressesLength); in InvokeIp4AddrResolverCallback()
688 for (uint16_t index = 0; index < aResult.mAddressesLength; index++) in InvokeIp4AddrResolverCallback()
1054 ip6AddrrResult.mAddressesLength = 1; in TestProxyBasic()
1289 ip6AddrrResult.mAddressesLength = 1; in TestProxyBasic()
1355 ip4AddrrResult.mAddressesLength = 1; in TestProxyBasic()
1594 ip6AddrrResult.mAddressesLength = 1; in TestProxySubtypeBrowse()
2123 ip6AddrrResult.mAddressesLength = 2; in TestProxySharedResolver()
2285 ip6AddrrResult.mAddressesLength = 4; in TestProxyFilterInvalidAddresses()
[all …]
Dtest_mdns.cpp739 for (uint16_t index = 0; index < aHost.mAddressesLength; index++) in ValidateAsProbeFor()
788 for (uint16_t index = 0; index < aHost.mAddressesLength; index++) in Validate()
1706 host.mAddressesLength = 3; in TestHostReg()
1795 host.mAddressesLength = 2; in TestHostReg()
1817 host.mAddressesLength = 3; in TestHostReg()
1834 host.mAddressesLength = 1; in TestHostReg()
1916 host.mAddressesLength = 0; in TestHostReg()
1929 host.mAddressesLength = 1; in TestHostReg()
1940 host.mAddressesLength = 0; in TestHostReg()
1965 host.mAddressesLength = 1; in TestHostReg()
[all …]
Dtest_ncp_dnssd.cpp130 dnssdHost.mAddressesLength = 0; in TestNcpDnssdRegistrations()
Dtest_srp_adv_proxy.cpp259 Log(" numAddresses : %u", aHost->mAddressesLength); in otPlatDnssdRegisterHost()
261 for (uint16_t index = 0; index < aHost->mAddressesLength; index++) in otPlatDnssdRegisterHost()
272 sDnssdNumHostAddresses = aHost->mAddressesLength; in otPlatDnssdRegisterHost()
/openthread-latest/src/lib/spinel/
Dspinel_prop_codec.cpp49 SuccessOrExit(error = aEncoder.WriteUint16(aObj.mAddressesLength)); in EncodeDnssd()
50 for (uint16_t i = 0; i < aObj.mAddressesLength; i++) in EncodeDnssd()
126 SuccessOrExit(error = aDecoder.ReadUint16(aHost.mAddressesLength)); in DecodeDnssdHost()
/openthread-latest/include/openthread/platform/
Ddnssd.h117 uint16_t mAddressesLength; ///< Number of entries in @p mAddresses array. member
520 uint16_t mAddressesLength; ///< Number of entries in `mAddresses` array. member
/openthread-latest/src/cli/
Dcli_mdns.cpp92 OutputLine(kIndentSize, "%u address:", aHost.mAddressesLength); in OutputHost()
94 for (uint16_t index = 0; index < aHost.mAddressesLength; index++) in OutputHost()
247 VerifyOrExit(host.mAddressesLength < kMaxAddresses, error = OT_ERROR_NO_BUFS); in ProcessRegisterHost()
248 addresses[host.mAddressesLength] = address; in ProcessRegisterHost()
249 host.mAddressesLength++; in ProcessRegisterHost()
833 OutputLine(kIndentSize, "%u address:", aResult.mAddressesLength); in HandleAddressResult()
835 for (uint16_t index = 0; index < aResult.mAddressesLength; index++) in HandleAddressResult()
/openthread-latest/src/core/net/
Ddnssd_server.cpp1949 for (uint16_t index = 0; index < aResult.mAddressesLength; index++) in HandleIp6AddressResult()
1988 for (uint16_t index = 0; index < aResult.mAddressesLength; index++) in HandleIp4AddressResult()
2207 for (uint16_t index = 0; index < addrResult->mAddressesLength; index++) in AppendHostIp6Addresses()
2236 for (uint16_t index = 0; index < addrResult->mAddressesLength; index++) in AppendHostIp4Addresses()
Dmdns.cpp1503 if (aHost.mAddressesLength == 0) in Register()
1522 mAddrRecord.UpdateProperty(mAddresses, AsCoreTypePtr(aHost.mAddresses), aHost.mAddressesLength); in Register()
1826 aHost.mAddressesLength = mAddresses.GetLength(); in CopyInfoTo()
6083 if (result.mAddressesLength > 0) in ReportResultsTo()
6134 aResult.mAddressesLength = aAddrArray.GetLength(); in ConstructResult()
Dsrp_advertising_proxy.cpp952 hostInfo.mAddressesLength = hostAddresses.GetLength(); in RegisterHost()