Home
last modified time | relevance | path

Searched defs:aUint8 (Results 1 – 7 of 7) sorted by relevance

/aosp_15_r20/external/openthread/src/core/common/
H A Dstring.cpp200 Error StringParseUint8(const char *&aString, uint8_t &aUint8) in StringParseUint8()
205 Error StringParseUint8(const char *&aString, uint8_t &aUint8, uint8_t aMaxValue) in StringParseUint8()
H A Dframe_data.cpp41 Error FrameData::ReadUint8(uint8_t &aUint8) { return ReadBytes(&aUint8, sizeof(uint8_t)); } in ReadUint8()
H A Dframe_builder.cpp55 Error FrameBuilder::AppendUint8(uint8_t aUint8) { return Append<uint8_t>(aUint8); } in AppendUint8()
/aosp_15_r20/external/openthread/src/lib/spinel/
H A Dspinel_encoder.hpp193 otError WriteUint8(uint8_t aUint8) { return mNcpBuffer.InFrameFeedByte(aUint8); } in WriteUint8()
H A Dspinel_decoder.cpp95 otError Decoder::ReadUint8(uint8_t &aUint8) in ReadUint8()
/aosp_15_r20/external/openthread/src/core/net/
H A Dchecksum.cpp49 void Checksum::AddUint8(uint8_t aUint8) in AddUint8()
/aosp_15_r20/external/openthread/src/core/utils/
H A Dparse_cmdline.cpp103 Error ParseAsUint8(const char *aString, uint8_t &aUint8) { return ParseUint<uint8_t>(aString, aUint… in ParseAsUint8()