Home
last modified time | relevance | path

Searched refs:aDest (Results 1 – 14 of 14) sorted by relevance

/openthread-latest/examples/platforms/utils/
Dmac_frame.cpp263 uint8_t otMacFrameGenerateCslIeTemplate(uint8_t *aDest) in otMacFrameGenerateCslIeTemplate() argument
265 assert(aDest != nullptr); in otMacFrameGenerateCslIeTemplate()
267 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetId(Mac::CslIe::kHeaderIeId); in otMacFrameGenerateCslIeTemplate()
268 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetLength(sizeof(Mac::CslIe)); in otMacFrameGenerateCslIeTemplate()
275 uint8_t otMacFrameGenerateEnhAckProbingIe(uint8_t *aDest, const uint8_t *aIeData, uint8_t aIeDataLe… in otMacFrameGenerateEnhAckProbingIe() argument
279 assert(aDest != nullptr); in otMacFrameGenerateEnhAckProbingIe()
281 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetId(Mac::ThreadIe::kHeaderIeId); in otMacFrameGenerateEnhAckProbingIe()
282 reinterpret_cast<Mac::HeaderIe *>(aDest)->SetLength(len); in otMacFrameGenerateEnhAckProbingIe()
284 aDest += sizeof(Mac::HeaderIe); in otMacFrameGenerateEnhAckProbingIe()
286 …reinterpret_cast<Mac::VendorIeHeader *>(aDest)->SetVendorOui(Mac::ThreadIe::kVendorOuiThreadCompan… in otMacFrameGenerateEnhAckProbingIe()
[all …]
Dmac_frame.h313 uint8_t otMacFrameGenerateCslIeTemplate(uint8_t *aDest);
327 uint8_t otMacFrameGenerateEnhAckProbingIe(uint8_t *aDest, const uint8_t *aIeData, uint8_t aIeDataLe…
/openthread-latest/src/core/mac/
Ddata_poll_sender.hpp262 Error GetPollDestinationAddress(Mac::Address &aDest, Mac::RadioType &aRadioType) const;
264 Error GetPollDestinationAddress(Mac::Address &aDest) const;
Ddata_poll_sender.cpp127 Error DataPollSender::GetPollDestinationAddress(Mac::Address &aDest, Mac::RadioType &aRadioType) co… in GetPollDestinationAddress() argument
129 Error DataPollSender::GetPollDestinationAddress(Mac::Address &aDest) const in GetPollDestinationAddress()
141 aDest.SetExtended(parent.GetExtAddress()); in GetPollDestinationAddress()
145 aDest.SetShort(parent.GetRloc16()); in GetPollDestinationAddress()
Dmac_frame.cpp1472 Error TxFrame::GenerateWakeupFrame(PanId aPanId, const Address &aDest, const Address &aSource) in GenerateWakeupFrame() argument
1482 VerifyOrExit(!aDest.IsNone() && !aSource.IsNone(), error = kErrorInvalidArgs); in GenerateWakeupFrame()
1484 fcf |= DetermineFcfAddrType(aDest, kMpFcfDstAddrShift); in GenerateWakeupFrame()
1491 IgnoreError(builder.AppendMacAddress(aDest)); in GenerateWakeupFrame()
Dmac_frame.hpp1324 Error GenerateWakeupFrame(PanId aPanId, const Address &aDest, const Address &aSource);
/openthread-latest/src/core/radio/
Dtrel_packet.hpp197 void SetDestination(const Mac::ExtAddress &aDest) { mDestination = aDest; } in SetDestination() argument
/openthread-latest/src/lib/spinel/
Dlogger.hpp51 uint32_t Snprintf(char *aDest, uint32_t aSize, const char *aFormat, ...);
Dlogger.cpp111 uint32_t Logger::Snprintf(char *aDest, uint32_t aSize, const char *aFormat, ...) in Snprintf() argument
117 len = vsnprintf(aDest, static_cast<size_t>(aSize), aFormat, args); in Snprintf()
/openthread-latest/src/cli/
Dcli_srp_client.cpp45 static otError CopyString(char *aDest, uint16_t aDestSize, const char *aSource) in CopyString() argument
54 memcpy(aDest, aSource, len + 1); in CopyString()
/openthread-latest/src/core/thread/
Daddress_resolver.cpp367 …ddressResolver::UpdateSnoopedCacheEntry(const Ip6::Address &aEid, uint16_t aRloc16, uint16_t aDest) in UpdateSnoopedCacheEntry() argument
392 VerifyOrExit(Get<Mle::Mle>().HasRloc16(aDest) || Get<ChildTable>().HasMinimalChild(aDest)); in UpdateSnoopedCacheEntry()
Daddress_resolver.hpp169 void UpdateSnoopedCacheEntry(const Ip6::Address &aEid, uint16_t aRloc16, uint16_t aDest);
/openthread-latest/src/core/net/
Dmdns.hpp1278 …EntryContext(Instance &aInstance, TxMessage::Type aResponseType, const AddressInfo &aDest, uint16_…
Dmdns.cpp3467 const AddressInfo &aDest, in EntryContext() argument
3470 , mResponseMessage(aInstance, aResponseType, aDest, aQueryId) in EntryContext()