Home
last modified time | relevance | path

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

/openthread-latest/src/core/mac/
Dmac_header_ie.hpp268 uint64_t GetTime(void) const { return LittleEndian::HostSwap64(mTime); } in GetTime()
275 void SetTime(uint64_t aTime) { mTime = LittleEndian::HostSwap64(aTime); } in SetTime()
279 uint64_t mTime; member in ot::Mac::TimeIe
/openthread-latest/src/core/utils/
Dhistory_tracker.cpp488 mTime = TimerMilli::GetNow(); in SetToNow()
493 if (mTime.GetValue() == kDistantPast) in SetToNow()
495 mTime.SetValue(mTime.GetValue() - 1); in SetToNow()
501 return IsDistantPast() ? kMaxAge : Min(aTime - mTime, kMaxAge); in GetDurationTill()
Dhistory_tracker.hpp308 bool IsDistantPast(void) const { return (mTime.GetValue() == kDistantPast); } in IsDistantPast()
309 void MarkAsDistantPast(void) { return mTime.SetValue(kDistantPast); } in MarkAsDistantPast()
314 TimeMilli mTime; member in ot::Utils::HistoryTracker::Timestamp