Home
last modified time | relevance | path

Searched refs:mEntry (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/net/
Dmdns.cpp3707 aQuestion.mEntry = Get<Core>().mHostEntries.FindMatching(name); in ProcessQuestion()
3709 if (aQuestion.mEntry == nullptr) in ProcessQuestion()
3711 aQuestion.mEntry = Get<Core>().mServiceEntries.FindMatching(name); in ProcessQuestion()
3712 aQuestion.mIsForService = (aQuestion.mEntry != nullptr); in ProcessQuestion()
3715 if (aQuestion.mEntry != nullptr) in ProcessQuestion()
3717 switch (aQuestion.mEntry->GetState()) in ProcessQuestion()
3773 aQuestion.mEntry = &serviceEntry; in ProcessQuestion()
3805 hostEntry = aQuestion.mIsForService ? nullptr : static_cast<HostEntry *>(aQuestion.mEntry); in AnswerQuestion()
3806 … serviceEntry = aQuestion.mIsForService ? static_cast<ServiceEntry *>(aQuestion.mEntry) : nullptr; in AnswerQuestion()
4237 mEntry = nullptr; in ClearProcessState()
Dmdns.hpp1327 Entry *mEntry; // Entry which can provide answer (if any). member