Home
last modified time | relevance | path

Searched refs:mSubTypeLabels (Results 1 – 16 of 16) sorted by relevance

/openthread-latest/src/core/utils/
Dsrp_client_buffers.hpp156 aArrayLength = GetArrayLength(mSubTypeLabels); in GetSubTypeLabelsArray()
157 return mSubTypeLabels; in GetSubTypeLabelsArray()
168 const char *mSubTypeLabels[kServiceMaxSubTypes + 1]; member in ot::Utils::SrpClientBuffers::ServiceEntry
Dsrp_client_buffers.cpp57 entry->mService.mSubTypeLabels = entry->mSubTypeLabels; in AllocateService()
/openthread-latest/src/cli/
Dcli_srp_client.cpp831 if (aService.mSubTypeLabels != nullptr) in OutputService()
833 for (uint16_t index = 0; aService.mSubTypeLabels[index] != nullptr; index++) in OutputService()
835 OutputFormat(",%s", aService.mSubTypeLabels[index]); in OutputService()
Dcli_mdns.hpp101 const char *mSubTypeLabels[kMaxSubTypes]; member
Dcli_mdns.cpp114 OutputLine(kIndentSize * 2, "%s", aService.mSubTypeLabels[index]); in OutputService()
312 aService.mSubTypeLabels = aBuffers.mSubTypeLabels; in ParseServiceArgs()
323 aBuffers.mSubTypeLabels[aService.mSubTypeLabelsLength] = label; in ParseServiceArgs()
/openthread-latest/include/openthread/
Dsrp_client.h104 …const char *const *mSubTypeLabels; ///< Array of sub-type labels (must end with `NULL` or … member
/openthread-latest/tests/unit/
Dtest_mdns.cpp2212 service.mSubTypeLabels = nullptr; in TestServiceReg()
2512 service.mSubTypeLabels = nullptr; in TestUnregisterBeforeProbeFinished()
2639 service.mSubTypeLabels = kSubTypes1; in TestServiceSubTypeReg()
2687 dnsMsg->ValidateSubType(service.mSubTypeLabels[index], service); in TestServiceSubTypeReg()
2772 …Log("Send a PTR query for sub-type `%s` and validate the response", service.mSubTypeLabels[index]); in TestServiceSubTypeReg()
2775 …fullSubServiceType.Append("%s._sub.%s", service.mSubTypeLabels[index], fullServiceType.AsCString()… in TestServiceSubTypeReg()
2787 dnsMsg->ValidateSubType(service.mSubTypeLabels[index], service); in TestServiceSubTypeReg()
2822 dnsMsg->ValidateSubType(service.mSubTypeLabels[3], service); in TestServiceSubTypeReg()
2831 service.mSubTypeLabels++; in TestServiceSubTypeReg()
2872 dnsMsg->ValidateSubType(service.mSubTypeLabels[index], service); in TestServiceSubTypeReg()
[all …]
Dtest_srp_adv_proxy.cpp162 Log(" sub-type %-4u : %s", index, aService->mSubTypeLabels[index]); in otPlatDnssdRegisterService()
615 aService.mSubTypeLabels = kSubLabels; in PrepareService1()
633 aService.mSubTypeLabels = kSubLabels2; in PrepareService2()
999 service2.mSubTypeLabels = nullptr; in TestSrpAdvProxy()
1672 service2.mSubTypeLabels = nullptr; in TestSrpAdvProxyDelayedCallback()
1900 service1.mSubTypeLabels = nullptr; // No sub-types in TestSrpAdvProxyReplacedEntries()
1979 service1.mSubTypeLabels = nullptr; // No sub-types in TestSrpAdvProxyReplacedEntries()
Dtest_spinel_prop_codec.cpp101 dnssdServiceEncode.mSubTypeLabels = dnssdSubType; in TestDnssd()
Dtest_srp_server.cpp317 aService.mSubTypeLabels = kSubLabels; in PrepareService1()
335 aService.mSubTypeLabels = kSubLabels2; in PrepareService2()
Dtest_dns_client.cpp276 aService.mSubTypeLabels = kSubLabels; in PrepareService1()
292 aService.mSubTypeLabels = kSubLabels2; in PrepareService2()
/openthread-latest/include/openthread/platform/
Ddnssd.h97 … const char *const *mSubTypeLabels; ///< Array of sub-type labels (can be NULL if no label). member
/openthread-latest/src/core/net/
Dsrp_client.hpp205 bool HasSubType(void) const { return (mSubTypeLabels != nullptr); } in HasSubType()
217 const char *GetSubTypeLabelAt(uint16_t aIndex) const { return mSubTypeLabels[aIndex]; } in GetSubTypeLabelAt()
Dsrp_advertising_proxy.cpp1020 serviceInfo.mSubTypeLabels = subTypeLabels.AsCArray(); in RegisterService()
Dmdns.cpp1961 const char *label = aService.mSubTypeLabels[i]; in Register()
2761 aService.mSubTypeLabels = aIterator.mSubTypeArray.AsCArray(); in CopyInfoTo()
2814 if (NameMatch(mLabel, aService.mSubTypeLabels[i])) in IsContainedIn()
/openthread-latest/src/lib/spinel/
Dspinel_prop_codec.cpp76 SuccessOrExit(error = aEncoder.WriteUtf8(aObj.mSubTypeLabels[i])); in EncodeDnssd()