Home
last modified time | relevance | path

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

/openthread-latest/src/core/net/
Dmdns.hpp1705 void PrepareQueryQuestion(TxMessage &aQuery, uint16_t aRrType);
1828 void PrepareQueryQuestion(TxMessage &aQuery, uint16_t aRrType);
1972 static bool QuestionMatches(uint16_t aQuestionRrType, uint16_t aRrType);
Dmdns.cpp445 bool Core::QuestionMatches(uint16_t aQuestionRrType, uint16_t aRrType) in QuestionMatches() argument
447 return (aQuestionRrType == aRrType) || (aQuestionRrType == ResourceRecord::kTypeAny); in QuestionMatches()
5547 void Core::ServiceCache::PrepareQueryQuestion(TxMessage &aQuery, uint16_t aRrType) in PrepareQueryQuestion() argument
5552 question.SetType(aRrType); in PrepareQueryQuestion()
6015 void Core::AddrCache::PrepareQueryQuestion(TxMessage &aQuery, uint16_t aRrType) in PrepareQueryQuestion() argument
6019 question.SetType(aRrType); in PrepareQueryQuestion()
/openthread-latest/tests/unit/
Dtest_mdns.cpp190 …bool Contains(uint16_t aRrType, const DnsNameString &aFullName, bool aUnicastResponse = false) con… in Contains()
196 VerifyOrExit(question->mType == aRrType); in Contains()