/openthread-latest/src/core/mac/ |
D | mac_types.cpp | 113 void PanIds::SetSource(PanId aPanId) in SetSource() argument 115 mSource = aPanId; in SetSource() 119 void PanIds::SetDestination(PanId aPanId) in SetDestination() argument 121 mDestination = aPanId; in SetDestination() 125 void PanIds::SetBothSourceDestination(PanId aPanId) in SetBothSourceDestination() argument 127 SetSource(aPanId); in SetBothSourceDestination() 128 SetDestination(aPanId); in SetBothSourceDestination()
|
D | link_raw.cpp | 125 Error LinkRaw::SetPanId(uint16_t aPanId) in SetPanId() argument 130 mSubMac.SetPanId(aPanId); in SetPanId() 131 mPanId = aPanId; in SetPanId()
|
D | mac_links.hpp | 313 void SetPanId(PanId aPanId) in SetPanId() argument 316 mSubMac.SetPanId(aPanId); in SetPanId() 319 mTrel.SetPanId(aPanId); in SetPanId()
|
D | mac_types.hpp | 477 void SetSource(PanId aPanId); 485 void SetDestination(PanId aPanId); 493 void SetBothSourceDestination(PanId aPanId);
|
D | mac_frame.hpp | 353 Error GetDstPanId(PanId &aPanId) const; 361 void SetDstPanId(PanId aPanId); 423 Error GetSrcPanId(PanId &aPanId) const; 433 Error SetSrcPanId(PanId aPanId);
|
D | mac_frame.cpp | 362 Error Frame::GetDstPanId(PanId &aPanId) const in GetDstPanId() 368 aPanId = LittleEndian::ReadUint16(&mPsdu[index]); in GetDstPanId() 374 void Frame::SetDstPanId(PanId aPanId) in SetDstPanId() argument 379 LittleEndian::WriteUint16(aPanId, &mPsdu[index]); in SetDstPanId() 528 Error Frame::GetSrcPanId(PanId &aPanId) const in GetSrcPanId() 534 aPanId = LittleEndian::ReadUint16(&mPsdu[index]); in GetSrcPanId() 540 Error Frame::SetSrcPanId(PanId aPanId) in SetSrcPanId() argument 546 LittleEndian::WriteUint16(aPanId, &mPsdu[index]); in SetSrcPanId()
|
D | link_raw.hpp | 218 Error SetPanId(PanId aPanId);
|
D | sub_mac.cpp | 151 void SubMac::SetPanId(PanId aPanId) in SetPanId() argument 153 Get<Radio>().SetPanId(aPanId); in SetPanId() 154 LogDebg("RadioPanId: 0x%04x", aPanId); in SetPanId()
|
/openthread-latest/src/cli/ |
D | cli_commissioner.hpp | 105 static void HandlePanIdConflict(uint16_t aPanId, uint32_t aChannelMask, void *aContext); 106 void HandlePanIdConflict(uint16_t aPanId, uint32_t aChannelMask);
|
D | cli_commissioner.cpp | 724 void Commissioner::HandlePanIdConflict(uint16_t aPanId, uint32_t aChannelMask, void *aContext) in HandlePanIdConflict() argument 726 static_cast<Commissioner *>(aContext)->HandlePanIdConflict(aPanId, aChannelMask); in HandlePanIdConflict() 729 void Commissioner::HandlePanIdConflict(uint16_t aPanId, uint32_t aChannelMask) in HandlePanIdConflict() argument 731 OutputLine("Conflict: %04x, %08lx", aPanId, ToUlong(aChannelMask)); in HandlePanIdConflict()
|
/openthread-latest/src/core/meshcop/ |
D | panid_query_client.cpp | 59 Error PanIdQueryClient::SendQuery(uint16_t aPanId, in SendQuery() argument 80 SuccessOrExit(error = Tlv::Append<MeshCoP::PanIdTlv>(*message, aPanId)); in SendQuery()
|
D | panid_query_client.hpp | 79 Error SendQuery(uint16_t aPanId,
|
/openthread-latest/src/core/radio/ |
D | trel_link.hpp | 95 void SetPanId(Mac::PanId aPanId) { mPanId = aPanId; } in SetPanId() argument
|
D | trel_packet.hpp | 165 void SetPanId(Mac::PanId aPanId) { mPanId = BigEndian::HostSwap16(aPanId); } in SetPanId() argument
|
D | radio.hpp | 328 void SetPanId(Mac::PanId aPanId); 884 inline void Radio::SetPanId(Mac::PanId aPanId) { otPlatRadioSetPanId(GetInstancePtr(), aPanId); } in SetPanId() argument
|
/openthread-latest/include/openthread/ |
D | commissioner.h | 411 typedef void (*otCommissionerPanIdConflictCallback)(uint16_t aPanId, uint32_t aChannelMask, void *a… 431 uint16_t aPanId,
|
/openthread-latest/examples/platforms/utils/ |
D | soft_source_match_table.h | 57 void utilsSoftSrcMatchSetPanId(uint16_t aPanId);
|
D | soft_source_match_table.c | 49 void utilsSoftSrcMatchSetPanId(uint16_t aPanId) { sPanId = aPanId; } in utilsSoftSrcMatchSetPanId() argument
|
D | mac_frame.h | 140 otPanId aPanId,
|
D | mac_frame.cpp | 37 otPanId aPanId, in otMacFrameDoesAddrMatch() argument 63 VerifyOrExit(panid == Mac::kPanIdBroadcast || panid == aPanId, rval = false); in otMacFrameDoesAddrMatch()
|
/openthread-latest/src/core/thread/ |
D | discover_scanner.cpp | 62 uint16_t aPanId, in Discover() argument 108 message->SetPanId(aPanId); in Discover() 140 if ((aPanId == Mac::kPanIdBroadcast) && (Get<Mac::Mac>().GetPanId() == Mac::kPanIdBroadcast)) in Discover()
|
D | discover_scanner.hpp | 128 Mac::PanId aPanId,
|
/openthread-latest/src/core/api/ |
D | commissioner_api.cpp | 151 uint16_t aPanId, in otCommissionerPanIdQuery() argument 158 aPanId, aChannelMask, AsCoreType(aAddress), aCallback, aContext); in otCommissionerPanIdQuery()
|
D | link_raw_api.cpp | 257 otError otLinkSetPanId(otInstance *aInstance, uint16_t aPanId) in otLinkSetPanId() argument 259 return AsCoreType(aInstance).Get<Mac::LinkRaw>().SetPanId(aPanId); in otLinkSetPanId()
|
/openthread-latest/src/ncp/ |
D | ncp_base.hpp | 390 …static void HandleCommissionerPanIdConflict_Jump(uint16_t aPanId, uint32_t aChannelMask, void *aCo… 391 void HandleCommissionerPanIdConflict(uint16_t aPanId, uint32_t aChannelMask);
|