Home
last modified time | relevance | path

Searched refs:kFcfDstAddrShort (Results 1 – 7 of 7) sorted by relevance

/external/openthread/tests/unit/
Dtest_mac_frame.cpp169 …{Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrNone, 0,… in TestMacHeader()
171 …{Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrShort, 0… in TestMacHeader()
172 …{Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrExt, 0, … in TestMacHeader()
176 … {Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrShort | in TestMacHeader()
179 … {Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrExt | in TestMacHeader()
189 … {Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrShort | in TestMacHeader()
192 … {Mac::Frame::kFcfFrameVersion2006 | Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrShort | in TestMacHeader()
/external/openthread/src/core/mac/
Dmac_frame.cpp149 case (kFcfDstAddrShort | kFcfSrcAddrNone | kFcfPanidCompression): in IsDstPanIdPresent()
204 case kFcfDstAddrShort: in GetDstAddr()
223 OT_ASSERT((GetFrameControlField() & kFcfDstAddrMask) == kFcfDstAddrShort); in SetDstAddr()
271 case kFcfDstAddrShort: in FindSrcPanIdIndex()
346 case kFcfDstAddrShort: in FindSrcAddrIndex()
781 case kFcfDstAddrShort: in CalculateAddrFieldSize()
1260 fcf |= kFcfDstAddrShort; in GenerateEnhAck()
Ddata_poll_sender.cpp597 fcf |= Mac::Frame::kFcfDstAddrShort | Mac::Frame::kFcfSrcAddrShort; in PrepareDataRequest()
Dmac_frame.hpp296 static constexpr uint16_t kFcfDstAddrShort = 2 << 10; member in ot::Mac::Frame
Dmac.cpp731 uint16_t fcf = Frame::kFcfFrameMacCmd | Frame::kFcfDstAddrShort | Frame::kFcfSrcAddrNone; in PrepareBeaconRequest()
/external/openthread/src/core/thread/
Dmesh_forwarder.cpp192 fcf |= (aMacDest.IsShort()) ? Mac::Frame::kFcfDstAddrShort : Mac::Frame::kFcfDstAddrExt; in PrepareEmptyFrame()
871 fcf |= (aMacDest.IsShort()) ? Mac::Frame::kFcfDstAddrShort : Mac::Frame::kFcfDstAddrExt; in PrepareDataFrame()
Dmesh_forwarder_ftd.cpp353 …fcf = Mac::Frame::kFcfFrameData | Mac::Frame::kFcfPanidCompression | Mac::Frame::kFcfDstAddrShort | in SendMesh()