Home
last modified time | relevance | path

Searched refs:IsDstAddrPresent (Results 1 – 3 of 3) sorted by relevance

/openthread-latest/tests/unit/
Dtest_mac_frame.cpp380 VerifyOrQuit(frame.IsDstAddrPresent() == (testCase.mDstAddrType != kNoneAddr)); in TestMacHeader()
607 VerifyOrQuit(!frame.IsDstAddrPresent()); in TestMacFrameApi()
625 VerifyOrQuit(frame.IsDstAddrPresent()); in TestMacFrameApi()
711 VerifyOrQuit(!ackFrame.IsDstAddrPresent()); in TestMacFrameAckGeneration()
770 VerifyOrQuit(ackFrame.IsDstAddrPresent()); in TestMacFrameAckGeneration()
/openthread-latest/src/core/mac/
Dmac_frame.hpp356 bool IsDstAddrPresent() const { return IsDstAddrPresent(GetFrameControlField()); } in IsDstAddrPresent() function in ot::Mac::Frame
902 …static bool IsDstAddrPresent(uint16_t aFcf) { return MaskFcf<kFcfDstAddrMask, kMpFcfDstAddrMask>(a… in IsDstAddrPresent() function in ot::Mac::Frame
Dmac_frame.cpp452 present = IsDstAddrPresent(aFcf); in IsDstPanIdPresent()