| /openthread-latest/src/core/mac/ |
| D | mac_types.cpp | 144 void PanIds::SetSource(PanId aPanId) in SetSource() argument 146 mSource = aPanId; in SetSource() 150 void PanIds::SetDestination(PanId aPanId) in SetDestination() argument 152 mDestination = aPanId; in SetDestination() 156 void PanIds::SetBothSourceDestination(PanId aPanId) in SetBothSourceDestination() argument 158 SetSource(aPanId); in SetBothSourceDestination() 159 SetDestination(aPanId); in SetBothSourceDestination()
|
| D | link_raw.cpp | 119 Error LinkRaw::SetPanId(uint16_t aPanId) in SetPanId() argument 124 mSubMac.SetPanId(aPanId); in SetPanId() 125 mPanId = aPanId; in SetPanId()
|
| D | mac_links.hpp | 294 void SetPanId(PanId aPanId) in SetPanId() argument 297 mSubMac.SetPanId(aPanId); in SetPanId() 300 mTrel.SetPanId(aPanId); in SetPanId()
|
| D | mac_types.hpp | 453 void SetSource(PanId aPanId); 460 void SetDestination(PanId aPanId); 467 void SetBothSourceDestination(PanId aPanId);
|
| D | link_raw.hpp | 211 Error SetPanId(PanId aPanId);
|
| D | mac_frame.cpp | 458 Error Frame::GetDstPanId(PanId &aPanId) const in GetDstPanId() 464 aPanId = LittleEndian::ReadUint16(&mPsdu[index]); in GetDstPanId() 593 Error Frame::GetSrcPanId(PanId &aPanId) const in GetSrcPanId() 599 aPanId = LittleEndian::ReadUint16(&mPsdu[index]); in GetSrcPanId() 1472 Error TxFrame::GenerateWakeupFrame(PanId aPanId, const Address &aDest, const Address &aSource) in GenerateWakeupFrame() argument 1490 IgnoreError(builder.AppendLittleEndianUint16(aPanId)); in GenerateWakeupFrame()
|
| D | sub_mac.cpp | 156 void SubMac::SetPanId(PanId aPanId) in SetPanId() argument 158 Get<Radio>().SetPanId(aPanId); in SetPanId() 159 LogDebg("RadioPanId: 0x%04x", aPanId); in SetPanId()
|
| /openthread-latest/src/cli/ |
| D | cli_commissioner.hpp | 102 static void HandlePanIdConflict(uint16_t aPanId, uint32_t aChannelMask, void *aContext); 103 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/tests/nexus/platform/ |
| D | nexus_radio.cpp | 64 …otPlatRadioSetPanId(otInstance *aInstance, otPanId aPanId) { AsNode(aInstance).mRadio.mPanId = aPa… in otPlatRadioSetPanId() argument 272 bool Radio::Matches(const Mac::Address &aAddress, Mac::PanId aPanId) const in Matches() 285 if ((aPanId != Mac::kPanIdBroadcast) && (mPanId != Mac::kPanIdBroadcast)) in Matches() 287 VerifyOrExit(mPanId == aPanId); in Matches()
|
| D | nexus_radio.hpp | 62 bool Matches(const Mac::Address &aAddress, Mac::PanId aPanId) const;
|
| /openthread-latest/src/core/meshcop/ |
| D | panid_query_client.cpp | 49 Error PanIdQueryClient::SendQuery(uint16_t aPanId, in SendQuery() argument 70 SuccessOrExit(error = Tlv::Append<MeshCoP::PanIdTlv>(*message, aPanId)); in SendQuery()
|
| D | panid_query_client.hpp | 76 Error SendQuery(uint16_t aPanId,
|
| /openthread-latest/src/core/radio/ |
| D | trel_link.hpp | 101 void SetPanId(Mac::PanId aPanId) { mPanId = aPanId; } in SetPanId() argument
|
| D | trel_packet.hpp | 151 void SetPanId(Mac::PanId aPanId) { mPanId = BigEndian::HostSwap16(aPanId); } in SetPanId() argument
|
| D | radio.hpp | 334 void SetPanId(Mac::PanId aPanId); 883 inline void Radio::SetPanId(Mac::PanId aPanId) { otPlatRadioSetPanId(GetInstancePtr(), aPanId); } in SetPanId() argument
|
| /openthread-latest/examples/platforms/utils/ |
| D | mac_frame.h | 131 otPanId aPanId, 149 otPanId aPanId,
|
| D | mac_frame.cpp | 41 otPanId aPanId, in otMacFrameDoesAddrMatch() argument 45 …return otMacFrameDoesAddrMatchAny(aFrame, aPanId, aShortAddress, Mac::kShortAddrInvalid, aExtAddre… in otMacFrameDoesAddrMatch() 49 otPanId aPanId, in otMacFrameDoesAddrMatchAny() argument 78 VerifyOrExit(panid == Mac::kPanIdBroadcast || panid == aPanId, rval = false); in otMacFrameDoesAddrMatchAny()
|
| D | soft_source_match_table.h | 57 void utilsSoftSrcMatchSetPanId(uint16_t aPanId);
|
| D | soft_source_match_table.c | 48 void utilsSoftSrcMatchSetPanId(uint16_t aPanId) { sPanId = aPanId; } in utilsSoftSrcMatchSetPanId() argument
|
| /openthread-latest/include/openthread/ |
| D | commissioner.h | 386 typedef void (*otCommissionerPanIdConflictCallback)(uint16_t aPanId, uint32_t aChannelMask, void *a… 405 uint16_t aPanId,
|
| /openthread-latest/src/core/thread/ |
| D | discover_scanner.cpp | 55 uint16_t aPanId, in Discover() argument 101 message->SetPanId(aPanId); in Discover() 133 if ((aPanId == Mac::kPanIdBroadcast) && (Get<Mac::Mac>().GetPanId() == Mac::kPanIdBroadcast)) in Discover()
|
| D | discover_scanner.hpp | 121 Mac::PanId aPanId,
|
| /openthread-latest/src/core/api/ |
| D | commissioner_api.cpp | 148 uint16_t aPanId, in otCommissionerPanIdQuery() argument 155 aPanId, aChannelMask, AsCoreType(aAddress), aCallback, aContext); in otCommissionerPanIdQuery()
|
| D | link_raw_api.cpp | 246 otError otLinkSetPanId(otInstance *aInstance, uint16_t aPanId) in otLinkSetPanId() argument 248 return AsCoreType(aInstance).Get<Mac::LinkRaw>().SetPanId(aPanId); in otLinkSetPanId()
|