Home
last modified time | relevance | path

Searched refs:mIeInfo (Results 1 – 4 of 4) sorted by relevance

/openthread-3.4.0/src/core/mac/
Dmac_frame.hpp1449 void SetTimeIeOffset(uint8_t aOffset) { mInfo.mTxInfo.mIeInfo->mTimeIeOffset = aOffset; } in SetTimeIeOffset()
1457 uint8_t GetTimeIeOffset(void) const { return mInfo.mTxInfo.mIeInfo->mTimeIeOffset; } in GetTimeIeOffset()
1467 mInfo.mTxInfo.mIeInfo->mNetworkTimeOffset = aNetworkTimeOffset; in SetNetworkTimeOffset()
1476 … void SetTimeSyncSeq(uint8_t aTimeSyncSeq) { mInfo.mTxInfo.mIeInfo->mTimeSyncSeq = aTimeSyncSeq; } in SetTimeSyncSeq()
Dmac_frame.cpp1186 otRadioIeInfo *ieInfoBuffer = mInfo.mTxInfo.mIeInfo; in CopyFrom()
1197 mInfo.mTxInfo.mIeInfo = ieInfoBuffer; in CopyFrom()
1207 memcpy(mInfo.mTxInfo.mIeInfo, aFromFrame.mInfo.mTxInfo.mIeInfo, sizeof(otRadioIeInfo)); in CopyFrom()
/openthread-3.4.0/examples/platforms/simulation/
Dradio.c492 sTransmitFrame.mInfo.mTxInfo.mIeInfo = &sTransmitIeInfo; in platformRadioInit()
494 sTransmitFrame.mInfo.mTxInfo.mIeInfo = NULL; in platformRadioInit()
789 if (sTransmitFrame.mInfo.mTxInfo.mIeInfo->mTimeIeOffset != 0) in radioSendMessage()
791 … uint8_t *timeIe = sTransmitFrame.mPsdu + sTransmitFrame.mInfo.mTxInfo.mIeInfo->mTimeIeOffset; in radioSendMessage()
792 …uint64_t time = (uint64_t)((int64_t)otPlatTimeGet() + sTransmitFrame.mInfo.mTxInfo.mIeInfo->mNetwo… in radioSendMessage()
794 *timeIe = sTransmitFrame.mInfo.mTxInfo.mIeInfo->mTimeSyncSeq; in radioSendMessage()
/openthread-3.4.0/include/openthread/platform/
Dradio.h274 … otRadioIeInfo *mIeInfo; ///< The pointer to the Header IE(s) related information. member