Home
last modified time | relevance | path

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

/openthread-2.7.6/src/core/utils/
Dhistory_tracker.cpp310 mTime = TimerMilli::GetNow(); in SetToNow()
315 if (mTime.GetValue() == kDistantPast) in SetToNow()
317 mTime.SetValue(mTime.GetValue() - 1); in SetToNow()
323 return IsDistantPast() ? kMaxAge : OT_MIN(aTime - mTime, kMaxAge); in GetDurationTill()
Dhistory_tracker.hpp237 bool IsDistantPast(void) const { return (mTime.GetValue() == kDistantPast); } in IsDistantPast()
238 void MarkAsDistantPast(void) { return mTime.SetValue(kDistantPast); } in MarkAsDistantPast()
243 TimeMilli mTime; member in ot::Utils::HistoryTracker::Timestamp
/openthread-2.7.6/src/core/mac/
Dmac_frame.hpp238 uint64_t GetTime(void) const { return HostSwap64(mTime); } in GetTime()
246 void SetTime(uint64_t aTime) { mTime = HostSwap64(aTime); } in SetTime()
250 uint64_t mTime; member in ot::Mac::TimeIe