Home
last modified time | relevance | path

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

/openthread-latest/examples/platforms/utils/
Dmac_frame.cpp385 uint8_t *timeIe = aFrame->mPsdu + aFrame->mInfo.mTxInfo.mIeInfo->mTimeIeOffset; in otMacFrameUpdateTimeIe() local
388 *timeIe = aFrame->mInfo.mTxInfo.mIeInfo->mTimeSyncSeq; in otMacFrameUpdateTimeIe()
390 *(++timeIe) = static_cast<uint8_t>(time & 0xff); in otMacFrameUpdateTimeIe()
394 *(++timeIe) = static_cast<uint8_t>(time & 0xff); in otMacFrameUpdateTimeIe()
/openthread-latest/src/core/mac/
Dmac_frame.cpp1230 const TimeIe *timeIe = nullptr; in GetTimeIe() local
1238 timeIe = reinterpret_cast<const TimeIe *>(cur); in GetTimeIe()
1239 VerifyOrExit(timeIe->GetVendorOui() == TimeIe::kVendorOuiNest, timeIe = nullptr); in GetTimeIe()
1240 VerifyOrExit(timeIe->GetSubType() == TimeIe::kVendorIeTime, timeIe = nullptr); in GetTimeIe()
1243 return timeIe; in GetTimeIe()
/openthread-latest/src/lib/spinel/
Dradio_spinel.cpp1636 … uint8_t *timeIe = mTransmitFrame->mPsdu + mTransmitFrame->mInfo.mTxInfo.mIeInfo->mTimeIeOffset; in Transmit() local
1658 *(timeIe++) = mTransmitFrame->mInfo.mTxInfo.mIeInfo->mTimeSyncSeq; in Transmit()
1662 *(timeIe++) = static_cast<uint8_t>(netSyncTime & 0xff); in Transmit()