Home
last modified time | relevance | path

Searched refs:GetPanId (Results 1 – 20 of 20) sorted by relevance

/openthread-latest/src/core/radio/
Dtrel_packet.cpp94 string.Append(" panid:%04x num:%lu src:%s", GetPanId(), ToUlong(GetPacketNumber()), in ToString()
Dtrel_packet.hpp144 Mac::PanId GetPanId(void) const { return BigEndian::HostSwap16(mPanId); } in GetPanId() function in ot::Trel::Header
Dtrel_link.cpp337 Mac::PanId rxPanId = aPacket.GetHeader().GetPanId(); in ProcessReceivedPacket()
467 ackPacket.GetHeader().SetPanId(aRxPacket.GetHeader().GetPanId()); in SendAck()
/openthread-latest/src/core/mac/
Dlink_raw.hpp201 PanId GetPanId(void) const { return mPanId; } in GetPanId() function in ot::Mac::LinkRaw
Dwakeup_tx_scheduler.cpp101 …VerifyOrExit(frame->GenerateWakeupFrame(Get<Mac::Mac>().GetPanId(), target, source) == kErrorNone,… in PrepareWakeupFrame()
Ddata_poll_sender.cpp567 frameInfo.mPanIds.SetBothSourceDestination(Get<Mac::Mac>().GetPanId()); in PrepareDataRequest()
Dmac.hpp336 PanId GetPanId(void) const { return mPanId; } in GetPanId() function in ot::Mac::Mac
/openthread-latest/src/core/thread/
Ddiscover_scanner.cpp133 if ((aPanId == Mac::kPanIdBroadcast) && (Get<Mac::Mac>().GetPanId() == Mac::kPanIdBroadcast)) in Discover()
320 result.mPanId = aRxInfo.mMessage.GetPanId(); in HandleDiscoveryResponse()
Dmesh_forwarder.cpp176 frameInfo.mPanIds.SetBothSourceDestination(Get<Mac::Mac>().GetPanId()); in PrepareEmptyFrame()
926 frameInfo.mPanIds.SetBothSourceDestination(Get<Mac::Mac>().GetPanId()); in PrepareDataFrame()
940 frameInfo.mPanIds.SetDestination(aMessage.GetPanId()); in PrepareDataFrame()
Dmesh_forwarder.hpp89 Mac::PanId GetPanId(void) const { return mPanId; } in GetPanId() function in ot::ThreadLinkInfo
Dmesh_forwarder_ftd.cpp335 frameInfo.mPanIds.SetBothSourceDestination(Get<Mac::Mac>().GetPanId()); in SendMesh()
Dmle.cpp166 if (Get<Mac::Mac>().GetPanId() == Mac::kPanIdBroadcast) in Start()
2173 SuccessOrExit(error = Tlv::Append<PanIdTlv>(*message, Get<Mac::Mac>().GetPanId())); in SendAnnounce()
3675 …PanIdMatch = (channel == Get<Mac::Mac>().GetPanChannel()) && (panId == Get<Mac::Mac>().GetPanId()); in HandleAnnounce()
3840 mAlternatePanId = Get<Mac::Mac>().GetPanId(); in ProcessAnnounce()
Dmle_router.cpp2797 responseInfo.mPanId = aRxInfo.mMessage.GetPanId(); in HandleDiscoveryRequest()
/openthread-latest/src/core/meshcop/
Ddataset_manager_ftd.cpp95 if ((dataset.Read<PanIdTlv>(panId) == kErrorNone) && (panId != Get<Mac::Mac>().GetPanId())) in ProcessSetOrReplaceRequest()
329 IgnoreError(dataset.Write<PanIdTlv>(Get<Mac::Mac>().GetPanId())); in GenerateLocal()
Djoiner.cpp162 …rExit(error = Get<Mle::DiscoverScanner>().Discover(Mac::ChannelMask(0), Get<Mac::Mac>().GetPanId(), in Start()
521 datasetInfo.Set<Dataset::kPanId>(Get<Mac::Mac>().GetPanId()); in HandleTmf()
/openthread-latest/tests/nexus/
Dtest_border_agent.cpp62 node1.Get<Mac::Mac>().SetPanId(node0.Get<Mac::Mac>().GetPanId()); in TestBorderAgent()
211 node1.Get<Mac::Mac>().SetPanId(node0.Get<Mac::Mac>().GetPanId()); in TestBorderAgentEphemeralKey()
/openthread-latest/src/core/api/
Dlink_raw_api.cpp244 …inkGetPanId(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::LinkRaw>().GetPanId(); } in otLinkGetPanId()
Dlink_api.cpp148 … otLinkGetPanId(otInstance *aInstance) { return AsCoreType(aInstance).Get<Mac::Mac>().GetPanId(); } in otLinkGetPanId()
/openthread-latest/src/core/common/
Dmessage.cpp786 messageCopy->SetPanId(GetPanId()); in Clone()
807 aLinkInfo.mPanId = GetPanId(); in GetLinkInfo()
Dmessage.hpp1103 uint16_t GetPanId(void) const { return GetMetadata().mPanId; } in GetPanId() function in ot::Message