Searched refs:aResponseMessage (Results 1 – 4 of 4) sorted by relevance
/openthread-3.5.0/src/core/net/ |
D | dns_client.cpp | 1316 void Client::ProcessResponse(const Message &aResponseMessage) in ProcessResponse() argument 1321 SuccessOrExit(ParseResponse(aResponseMessage, query, responseError)); in ProcessResponse() 1348 ResolveHostAddressIfNeeded(*query, aResponseMessage); in ProcessResponse() 1353 SaveQueryResponse(*query, aResponseMessage); in ProcessResponse() 1357 PrepareResponseAndFinalize(FindMainQuery(*query), aResponseMessage, nullptr); in ProcessResponse() 1363 Error Client::ParseResponse(const Message &aResponseMessage, Query *&aQuery, Error &aResponseError) in ParseResponse() argument 1366 uint16_t offset = aResponseMessage.GetOffset(); in ParseResponse() 1371 SuccessOrExit(error = aResponseMessage.Read(offset, header)); in ParseResponse() 1391 SuccessOrExit(error = Name::CompareName(aResponseMessage, offset, queryName)); in ParseResponse() 1403 …SuccessOrExit(error = ResourceRecord::ParseRecords(aResponseMessage, offset, header.GetAnswerCount… in ParseResponse() [all …]
|
D | dns_client.hpp | 843 void ProcessResponse(const Message &aResponseMessage); 844 … Error ParseResponse(const Message &aResponseMessage, Query *&aQuery, Error &aResponseError); 846 void SaveQueryResponse(Query &aQuery, const Message &aResponseMessage); 847 … Query *PopulateResponse(Response &aResponse, Query &aQuery, const Message &aResponseMessage); 848 …void PrepareResponseAndFinalize(Query &aQuery, const Message &aResponseMessage, Response *a… 862 void ResolveHostAddressIfNeeded(Query &aQuery, const Message &aResponseMessage);
|
D | dnssd_server.cpp | 859 …Server::OnUpstreamQueryDone(UpstreamQueryTransaction &aQueryTransaction, Message *aResponseMessage) in OnUpstreamQueryDone() argument 865 if (aResponseMessage != nullptr) in OnUpstreamQueryDone() 867 error = mSocket.SendTo(*aResponseMessage, aQueryTransaction.GetMessageInfo()); in OnUpstreamQueryDone() 873 FreeMessageOnError(aResponseMessage, error); in OnUpstreamQueryDone()
|
D | dnssd_server.hpp | 213 … void OnUpstreamQueryDone(UpstreamQueryTransaction &aQueryTransaction, Message *aResponseMessage);
|