D | dataset.hpp | 753 Error SetTlv(const Tlv &aTlv); 766 Error SetTlv(Tlv::Type aType, const void *aValue, uint8_t aLength); 780 template <typename ValueType> Error SetTlv(Tlv::Type aType, const ValueType &aValue) in SetTlv() function in ot::MeshCoP::Dataset 784 return SetTlv(aType, &aValue, sizeof(ValueType)); in SetTlv() 933 template <> inline Error Dataset::SetTlv(Tlv::Type aType, const uint16_t &aValue) in SetTlv() function in ot::MeshCoP::Dataset 937 return SetTlv(aType, &value, sizeof(uint16_t)); in SetTlv() 950 template <> inline Error Dataset::SetTlv(Tlv::Type aType, const uint32_t &aValue) in SetTlv() function in ot::MeshCoP::Dataset 954 return SetTlv(aType, &value, sizeof(uint32_t)); in SetTlv()
|