Home
last modified time | relevance | path

Searched refs:mRadioType (Results 1 – 10 of 10) sorted by relevance

/openthread-3.4.0/src/core/common/
Dmessage.hpp219 …uint8_t mRadioType : 2; // The radio link type the message was received on, or should be sent… member
1307 …adioType GetRadioType(void) const { return static_cast<Mac::RadioType>(GetMetadata().mRadioType); } in GetRadioType()
1318 GetMetadata().mRadioType = aRadioType; in SetRadioType()
Dmessage.cpp809 SetRadioType(static_cast<Mac::RadioType>(aLinkInfo.mRadioType)); in SetLinkInfo()
/openthread-3.4.0/src/core/radio/
Dtrel_link.cpp234 mRxFrame.mRadioType = Mac::kRadioTypeTrel; in BeginTransmit()
371 mRxFrame.mRadioType = Mac::kRadioTypeTrel; in ProcessReceivedPacket()
/openthread-3.4.0/include/openthread/
Dlink.h75 uint8_t mRadioType; ///< Radio link type. member
/openthread-3.4.0/src/core/mac/
Dmac_frame.hpp1026 RadioType GetRadioType(void) const { return static_cast<RadioType>(mRadioType); } in GetRadioType()
1034 void SetRadioType(RadioType aRadioType) { mRadioType = static_cast<uint8_t>(aRadioType); } in SetRadioType()
Dmac_frame.cpp1188 uint8_t radioType = mRadioType; in CopyFrom()
1200 mRadioType = radioType; in CopyFrom()
1211 if (mRadioType != aFromFrame.GetRadioType()) in CopyFrom()
/openthread-3.4.0/include/openthread/platform/
Dradio.h261 uint8_t mRadioType; ///< Radio link type - should be ignored by radio driver. member
/openthread-3.4.0/tests/unit/
Dtest_mac_frame.cpp276 frame.mRadioType = 0; in TestMacHeader()
/openthread-3.4.0/src/core/thread/
Dmesh_forwarder_ftd.cpp712 message->SetRadioType(static_cast<Mac::RadioType>(aLinkInfo.mRadioType)); in HandleMesh()
Dmesh_forwarder.cpp90 mRadioType = static_cast<uint8_t>(aFrame.GetRadioType()); in SetFrom()