Home
last modified time | relevance | path

Searched refs:mMessageId (Results 1 – 11 of 11) sorted by relevance

/openthread-latest/src/core/meshcop/
Dborder_agent.hpp274 uint16_t GetMessageId(void) const { return mMessageId; } in GetMessageId()
278 … uint16_t mMessageId; // The CoAP Message ID of the original request. member in ot::MeshCoP::BorderAgent::ForwardContext
Dborder_agent.cpp951 mMessageId = aMessage.GetMessageId(); in Init()
974 aMessage.SetMessageId(mMessageId); in ToHeader()
/openthread-latest/src/core/net/
Ddns_client.cpp1009 aInfo.mMessageId = 0; in StartQuery()
1098 if (aInfo.mMessageId == 0) in SendQuery()
1105 aInfo.mMessageId = header.GetMessageId(); in SendQuery()
1109 header.SetMessageId(aInfo.mMessageId); in SendQuery()
1292 if (info.mMessageId == aMessageId) in FindQueryById()
1611 info.mMessageId = 0; in ReplaceWithIp4Query()
1696 info.mMessageId = 0; in ReplaceWithSeparateSrvTxtQueries()
1702 info.mMessageId = 0; in ReplaceWithSeparateSrvTxtQueries()
1738 info.mMessageId = 0; in ResolveHostAddressIfNeeded()
Ddns_dso.hpp684 bool Matches(MessageId aMessageId) const { return mMessageId == aMessageId; } in Matches()
686 MessageId mMessageId; member
Ddns_types.hpp87 uint16_t GetMessageId(void) const { return BigEndian::HostSwap16(mMessageId); } in GetMessageId()
94 void SetMessageId(uint16_t aMessageId) { mMessageId = BigEndian::HostSwap16(aMessageId); } in SetMessageId()
369 …uint16_t mMessageId; // Message identifier for requester to match up replies to outstanding querie… member in ot::Dns::Header
Ddns_client.hpp772 uint16_t mMessageId; member
Ddns_types.cpp43 return Random::Crypto::FillBuffer(reinterpret_cast<uint8_t *>(&mMessageId), sizeof(mMessageId)); in SetRandomMessageId()
Ddns_dso.cpp1392 entry->mMessageId = aMessageId; in Add()
/openthread-latest/src/core/coap/
Dcoap_message.hpp296 …nt16_t GetMessageId(void) const { return BigEndian::HostSwap16(GetHelpData().mHeader.mMessageId); } in GetMessageId()
303 …void SetMessageId(uint16_t aMessageId) { GetHelpData().mHeader.mMessageId = BigEndian::HostSwap16(… in SetMessageId()
865 uint16_t mMessageId; ///< The CoAP Message ID member
Dcoap.hpp875 uint16_t mMessageId; member in ot::Coap::CoapBase
Dcoap.cpp45 , mMessageId(Random::NonCrypto::GetUint16()) in CoapBase()
257 aMessage.SetMessageId(mMessageId++); in SendMessage()