Home
last modified time | relevance | path

Searched refs:aUint (Results 1 – 5 of 5) sorted by relevance

/openthread-latest/src/lib/spinel/
Dspinel_encoder.cpp158 otError Encoder::WriteUintPacked(unsigned int aUint) in WriteUintPacked() argument
163 len = spinel_packed_uint_encode(buffer, sizeof(buffer), aUint); in WriteUintPacked()
Dspinel_decoder.cpp201 otError Decoder::ReadUintPacked(unsigned int &aUint) in ReadUintPacked() argument
211 aUint = uint; in ReadUintPacked()
Dspinel_decoder.hpp232 otError ReadUintPacked(unsigned int &aUint);
Dspinel_encoder.hpp320 otError WriteUintPacked(unsigned int aUint);
/openthread-latest/src/core/utils/
Dparse_cmdline.cpp89 template <typename UintType> Error ParseUint(const char *aString, UintType &aUint) in ParseUint() argument
97 aUint = static_cast<UintType>(value); in ParseUint()