Home
last modified time | relevance | path

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

/external/openthread/tests/unit/
Dtest_mac_frame.cpp390 VerifyOrQuit(!frame.IsDstAddrPresent()); in TestMacFrameApi()
407 VerifyOrQuit(frame.IsDstAddrPresent()); in TestMacFrameApi()
498 VerifyOrQuit(!ackFrame.IsDstAddrPresent()); in TestMacFrameAckGeneration()
555 VerifyOrQuit(ackFrame.IsDstAddrPresent()); in TestMacFrameAckGeneration()
/external/openthread/src/core/mac/
Dmac_frame.hpp527 bool IsDstAddrPresent() const { return IsDstAddrPresent(GetFrameControlField()); } in IsDstAddrPresent() function in ot::Mac::Frame
1091 …static bool IsDstAddrPresent(uint16_t aFcf) { return (aFcf & kFcfDstAddrMask) != kFcfDstAddrNone; } in IsDstAddrPresent() function in ot::Mac::Frame
Dmac_frame.cpp164 present = IsDstAddrPresent(aFcf); in IsDstPanIdPresent()