Home
last modified time | relevance | path

Searched refs:InFrameFeedByte (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/lib/spinel/
Dspinel_encoder.cpp121 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint16 >> 0) & 0xff)); in WriteUint16()
122 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint16 >> 8) & 0xff)); in WriteUint16()
132 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint32 >> 0) & 0xff)); in WriteUint32()
133 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint32 >> 8) & 0xff)); in WriteUint32()
134 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint32 >> 16) & 0xff)); in WriteUint32()
135 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint32 >> 24) & 0xff)); in WriteUint32()
145 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 0) & 0xff)); in WriteUint64()
146 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 8) & 0xff)); in WriteUint64()
147 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 16) & 0xff)); in WriteUint64()
148 SuccessOrExit(error = mNcpBuffer.InFrameFeedByte((aUint64 >> 24) & 0xff)); in WriteUint64()
[all …]
Dspinel_encoder.hpp167 otError WriteBool(bool aBool) { return mNcpBuffer.InFrameFeedByte(aBool ? 0x01 : 0x00); } in WriteBool()
184 otError WriteUint8(uint8_t aUint8) { return mNcpBuffer.InFrameFeedByte(aUint8); } in WriteUint8()
Dspinel_buffer.hpp170 otError InFrameFeedByte(uint8_t aByte);
Dspinel_buffer.cpp361 otError Buffer::InFrameFeedByte(uint8_t aByte) in InFrameFeedByte() function in ot::Spinel::Buffer