Home
last modified time | relevance | path

Searched refs:mFrame (Results 1 – 2 of 2) sorted by relevance

/openthread-3.5.0/src/lib/spinel/
Dspinel_decoder.cpp42 : mFrame(nullptr) in Decoder()
55 mFrame = aFrame; in Init()
56 mLength = (mFrame != nullptr) ? aLength : 0; in Init()
100 aUint8 = mFrame[mIndex]; in ReadUint8()
125 aUint16 = static_cast<uint16_t>(mFrame[mIndex] | (mFrame[mIndex + 1] << 8)); in ReadUint16()
151 …aUint32 = ((static_cast<uint32_t>(mFrame[mIndex + 0]) << 0) | (static_cast<uint32_t>(mFrame[mIndex… in ReadUint32()
152 …(static_cast<uint32_t>(mFrame[mIndex + 2]) << 16) | (static_cast<uint32_t>(mFrame[mIndex + 3]) << … in ReadUint32()
178 …aUint64 = ((static_cast<uint64_t>(mFrame[mIndex + 0]) << 0) | (static_cast<uint64_t>(mFrame[mIndex… in ReadUint64()
179 …(static_cast<uint64_t>(mFrame[mIndex + 2]) << 16) | (static_cast<uint64_t>(mFrame[mIndex + 3]) << … in ReadUint64()
180 …(static_cast<uint64_t>(mFrame[mIndex + 4]) << 32) | (static_cast<uint64_t>(mFrame[mIndex + 5]) << … in ReadUint64()
[all …]
Dspinel_decoder.hpp82 const uint8_t *GetFrame(void) const { return mFrame; } in GetFrame()
575 const uint8_t *mFrame; // Frame buffer. member in ot::Spinel::Decoder