Searched refs:aDest (Results 1 – 12 of 12) sorted by relevance
/openthread-3.6.0/examples/platforms/utils/ |
D | mac_frame.cpp | 226 uint8_t otMacFrameGenerateCslIeTemplate(uint8_t *aDest) in otMacFrameGenerateCslIeTemplate() argument 228 assert(aDest != nullptr); in otMacFrameGenerateCslIeTemplate() 230 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetId(Mac::CslIe::kHeaderIeId); in otMacFrameGenerateCslIeTemplate() 231 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetLength(sizeof(Mac::CslIe)); in otMacFrameGenerateCslIeTemplate() 238 uint8_t otMacFrameGenerateEnhAckProbingIe(uint8_t *aDest, const uint8_t *aIeData, uint8_t aIeDataLe… in otMacFrameGenerateEnhAckProbingIe() argument 242 assert(aDest != nullptr); in otMacFrameGenerateEnhAckProbingIe() 244 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetId(Mac::ThreadIe::kHeaderIeId); in otMacFrameGenerateEnhAckProbingIe() 245 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetLength(len); in otMacFrameGenerateEnhAckProbingIe() 247 aDest += sizeof(Mac::HeaderIe); in otMacFrameGenerateEnhAckProbingIe() 249 …reinterpret_cast<Mac::VendorIeHeader *>(aDest)->SetVendorOui(Mac::ThreadIe::kVendorOuiThreadCompan… in otMacFrameGenerateEnhAckProbingIe() [all …]
|
D | mac_frame.h | 306 uint8_t otMacFrameGenerateCslIeTemplate(uint8_t *aDest); 321 uint8_t otMacFrameGenerateEnhAckProbingIe(uint8_t *aDest, const uint8_t *aIeData, uint8_t aIeDataLe…
|
/openthread-3.6.0/src/core/mac/ |
D | data_poll_sender.hpp | 281 Error GetPollDestinationAddress(Mac::Address &aDest, Mac::RadioType &aRadioType) const; 283 Error GetPollDestinationAddress(Mac::Address &aDest) const;
|
D | data_poll_sender.cpp | 137 Error DataPollSender::GetPollDestinationAddress(Mac::Address &aDest, Mac::RadioType &aRadioType) co… in GetPollDestinationAddress() argument 139 Error DataPollSender::GetPollDestinationAddress(Mac::Address &aDest) const in GetPollDestinationAddress() 151 aDest.SetExtended(parent.GetExtAddress()); in GetPollDestinationAddress() 155 aDest.SetShort(parent.GetRloc16()); in GetPollDestinationAddress()
|
/openthread-3.6.0/src/core/radio/ |
D | trel_packet.hpp | 217 void SetDestination(const Mac::ExtAddress &aDest) { mDestination = aDest; } in SetDestination() argument
|
/openthread-3.6.0/src/cli/ |
D | cli_srp_client.cpp | 45 static otError CopyString(char *aDest, uint16_t aDestSize, const char *aSource) in CopyString() argument 54 memcpy(aDest, aSource, len + 1); in CopyString()
|
/openthread-3.6.0/src/core/thread/ |
D | mesh_forwarder_ftd.cpp | 411 void MeshForwarder::EvaluateRoutingCost(uint16_t aDest, uint8_t &aBestCost, uint16_t &aBestDest) co… in EvaluateRoutingCost() argument 413 uint8_t cost = Get<RouterTable>().GetPathCost(aDest); in EvaluateRoutingCost() 417 aBestDest = aDest; in EvaluateRoutingCost()
|
D | address_resolver.cpp | 382 Mac::ShortAddress aDest) in UpdateSnoopedCacheEntry() argument 405 VerifyOrExit((aDest == macAddress) || Get<Mle::MleRouter>().IsMinimalChild(aDest)); in UpdateSnoopedCacheEntry()
|
D | address_resolver.hpp | 180 …ateSnoopedCacheEntry(const Ip6::Address &aEid, Mac::ShortAddress aRloc16, Mac::ShortAddress aDest);
|
D | mesh_forwarder.hpp | 545 void EvaluateRoutingCost(uint16_t aDest, uint8_t &aBestCost, uint16_t &aBestDest) const;
|
/openthread-3.6.0/src/lib/spinel/ |
D | radio_spinel.hpp | 1231 uint32_t Snprintf(char *aDest, uint32_t aSize, const char *aFormat, ...);
|
D | radio_spinel.cpp | 2406 uint32_t RadioSpinel::Snprintf(char *aDest, uint32_t aSize, const char *aFormat, ...) in Snprintf() argument 2412 len = vsnprintf(aDest, static_cast<size_t>(aSize), aFormat, args); in Snprintf()
|