Home
last modified time | relevance | path

Searched refs:mTimeSyncSeq (Results 1 – 11 of 11) sorted by relevance

/openthread-latest/src/core/thread/
Dtime_sync_service.cpp51 , mTimeSyncSeq(OT_TIME_SYNC_INVALID_SEQ) in TimeSync()
79 timeSyncSeqDelta = static_cast<int8_t>(aMessage.GetTimeSyncSeq() - mTimeSyncSeq); in HandleTimeSyncMessage()
81 if (mTimeSyncSeq != OT_TIME_SYNC_INVALID_SEQ && timeSyncSeqDelta < 0) in HandleTimeSyncMessage()
87 …er time sync seq received:%u. Forwarding current seq:%u", aMessage.GetTimeSyncSeq(), mTimeSyncSeq); in HandleTimeSyncMessage()
94 mTimeSyncSeq = aMessage.GetTimeSyncSeq() + 1; in HandleTimeSyncMessage()
98 aMessage.GetTimeSyncSeq(), mTimeSyncSeq); in HandleTimeSyncMessage()
106 …if (mTimeSyncSeq == OT_TIME_SYNC_INVALID_SEQ || timeSyncSeqDelta > 0 || Get<Mle::MleRouter>().IsDe… in HandleTimeSyncMessage()
110 mTimeSyncSeq = aMessage.GetTimeSyncSeq(); in HandleTimeSyncMessage()
114 LogInfo("Newer time sync seq:%u received. Forwarding", mTimeSyncSeq); in HandleTimeSyncMessage()
129 if (++mTimeSyncSeq == OT_TIME_SYNC_INVALID_SEQ) in IncrementTimeSyncSeq()
[all …]
Dtime_sync_service.hpp109 uint8_t GetTimeSyncSeq(void) const { return mTimeSyncSeq; } in GetTimeSyncSeq()
191 uint8_t mTimeSyncSeq; ///< The time synchronization sequence. member in ot::TimeSync
Dmesh_forwarder.hpp134 uint8_t GetTimeSyncSeq(void) const { return mTimeSyncSeq; } in GetTimeSyncSeq()
Dmesh_forwarder.cpp85 mTimeSyncSeq = aFrame.ReadTimeSyncSeq(); in SetFrom()
/openthread-latest/include/openthread/
Dmessage.h101 uint8_t mTimeSyncSeq; ///< The time sync sequence. member
/openthread-latest/src/core/common/
Dmessage.hpp217 uint8_t mTimeSyncSeq; // The time sync sequence. member
1424 void SetTimeSyncSeq(uint8_t aTimeSyncSeq) { GetMetadata().mTimeSyncSeq = aTimeSyncSeq; } in SetTimeSyncSeq()
1431 uint8_t GetTimeSyncSeq(void) const { return GetMetadata().mTimeSyncSeq; } in GetTimeSyncSeq()
Dmessage.cpp815 aLinkInfo.mTimeSyncSeq = GetTimeSyncSeq(); in GetLinkInfo()
837 SetTimeSyncSeq(aLinkInfo.mTimeSyncSeq); in UpdateLinkInfoFrom()
/openthread-latest/include/openthread/platform/
Dradio.h237 uint8_t mTimeSyncSeq; ///< The Time sync sequence. member
/openthread-latest/examples/platforms/utils/
Dmac_frame.cpp388 *timeIe = aFrame->mInfo.mTxInfo.mIeInfo->mTimeSyncSeq; in otMacFrameUpdateTimeIe()
/openthread-latest/src/core/mac/
Dmac_frame.hpp1289 … void SetTimeSyncSeq(uint8_t aTimeSyncSeq) { mInfo.mTxInfo.mIeInfo->mTimeSyncSeq = aTimeSyncSeq; } in SetTimeSyncSeq()
/openthread-latest/src/lib/spinel/
Dradio_spinel.cpp1658 *(timeIe++) = mTransmitFrame->mInfo.mTxInfo.mIeInfo->mTimeSyncSeq; in Transmit()