Home
last modified time | relevance | path

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

/external/openthread/src/core/mac/
Dmac_frame.cpp933 template <> void Frame::InitIeContentAt<TimeIe>(uint8_t &aIndex) in InitIeContentAt()
935 reinterpret_cast<TimeIe *>(mPsdu + aIndex)->Init(); in InitIeContentAt()
936 aIndex += sizeof(TimeIe); in InitIeContentAt()
1045 const TimeIe *Frame::GetTimeIe(void) const in GetTimeIe()
1047 const TimeIe * timeIe = nullptr; in GetTimeIe()
1055 timeIe = reinterpret_cast<const TimeIe *>(cur); in GetTimeIe()
1056 VerifyOrExit(timeIe->GetVendorOui() == TimeIe::kVendorOuiNest, timeIe = nullptr); in GetTimeIe()
1057 VerifyOrExit(timeIe->GetSubType() == TimeIe::kVendorIeTime, timeIe = nullptr); in GetTimeIe()
1124 template Error Frame::AppendHeaderIeAt<TimeIe>(uint8_t &aIndex);
Dmac_frame.hpp201 class TimeIe : public VendorIeHeader class
906 TimeIe *GetTimeIe(void) { return AsNonConst(AsConst(this)->GetTimeIe()); } in GetTimeIe()
914 const TimeIe *GetTimeIe(void) const;
/external/openthread/src/core/thread/
Dmesh_forwarder.cpp1828 IgnoreError(aFrame.AppendHeaderIeAt<Mac::TimeIe>(index)); in AppendHeaderIe()