Home
last modified time | relevance | path

Searched refs:aSubLabel (Results 1 – 3 of 3) sorted by relevance

/openthread-latest/src/core/net/
Dmdns.hpp1100 bool CanAnswerSubType(const char *aSubLabel) const;
1106 void AnswerServiceTypeQuestion(const AnswerInfo &aInfo, const char *aSubLabel);
1107 bool ShouldSuppressKnownAnswer(uint32_t aTtl, const char *aSubLabel) const;
1344 const char *aSubLabel,
1347 Name::LabelBuffer &aSubLabel,
Dmdns.cpp1917 bool Core::ServiceEntry::CanAnswerSubType(const char *aSubLabel) const in CanAnswerSubType()
1924 subType = mSubTypes.FindMatching(aSubLabel); in CanAnswerSubType()
2123 void Core::ServiceEntry::AnswerServiceTypeQuestion(const AnswerInfo &aInfo, const char *aSubLabel) in AnswerServiceTypeQuestion() argument
2127 if (aSubLabel == nullptr) in AnswerServiceTypeQuestion()
2133 SubType *subType = mSubTypes.FindMatching(aSubLabel); in AnswerServiceTypeQuestion()
2146 bool Core::ServiceEntry::ShouldSuppressKnownAnswer(uint32_t aTtl, const char *aSubLabel) const in ShouldSuppressKnownAnswer()
2155 if (aSubLabel == nullptr) in ShouldSuppressKnownAnswer()
2161 const SubType *subType = mSubTypes.FindMatching(aSubLabel); in ShouldSuppressKnownAnswer()
3884 const char *aSubLabel, in ShouldSuppressKnownAnswer() argument
3912 shouldSuppress = aServiceEntry.ShouldSuppressKnownAnswer(ptr.GetTtl(), aSubLabel); in ShouldSuppressKnownAnswer()
[all …]
/openthread-latest/tests/unit/
Dtest_mdns.cpp872 …void ValidateSubType(const char *aSubLabel, const Core::Service &aService, GoodBye aIsGoodBye = kN… in ValidateSubType()
880 subServiceType.Append("%s._sub.%s.local.", aSubLabel, aService.mServiceType); in ValidateSubType()