Home
last modified time | relevance | path

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

/openthread-latest/src/core/common/
Dtlvs.cpp260 template <typename UintType> Error Tlv::AppendUintTlv(Message &aMessage, uint8_t aType, UintType aV… in AppendUintTlv() function in ot::Tlv
268 template Error Tlv::AppendUintTlv<uint8_t>(Message &aMessage, uint8_t aType, uint8_t aValue);
269 template Error Tlv::AppendUintTlv<uint16_t>(Message &aMessage, uint8_t aType, uint16_t aValue);
270 template Error Tlv::AppendUintTlv<uint32_t>(Message &aMessage, uint8_t aType, uint32_t aValue);
Dtlvs.hpp610 return AppendUintTlv(aMessage, UintTlvType::kType, aValue); in Append()
704 …template <typename UintType> static Error AppendUintTlv(Message &aMessage, uint8_t aType, UintType…