Home
last modified time | relevance | path

Searched refs:AppendTlv (Results 1 – 7 of 7) sorted by relevance

/openthread-3.5.0/src/core/common/
Dtlvs.hpp475 return AppendTlv(aMessage, TlvType::kType, aValue, aLength); in Append()
495 return AppendTlv(aMessage, SimpleTlvType::kType, &aValue, sizeof(aValue)); in Append()
558 static Error AppendTlv(Message &aMessage, uint8_t aType, const void *aValue, uint8_t aLength);
Dtlvs.cpp292 return AppendTlv(aMessage, aType, aValue, static_cast<uint8_t>(length)); in AppendStringTlv()
299 return AppendTlv(aMessage, aType, &value, sizeof(UintType)); in AppendUintTlv()
307 Error Tlv::AppendTlv(Message &aMessage, uint8_t aType, const void *aValue, uint8_t aLength) in AppendTlv() function in ot::Tlv
/openthread-3.5.0/src/core/thread/
Dnetwork_data_local.cpp105 prefixTlv = As<PrefixTlv>(AppendTlv(sizeof(PrefixTlv) + aPrefix.GetBytesSize() + subTlvLength)); in AddPrefix()
200 serviceTlv = As<ServiceTlv>(AppendTlv(serviceTlvSize)); in AddService()
Dnetwork_data.hpp735 NetworkDataTlv *AppendTlv(uint16_t aTlvSize);
Dnetwork_data_leader.cpp441 …commissioningDataTlv = As<CommissioningDataTlv>(AppendTlv(sizeof(CommissioningDataTlv) + aValueLen… in SetCommissioningData()
Dnetwork_data_leader_ftd.cpp798 dstPrefix = As<PrefixTlv>(AppendTlv(PrefixTlv::CalculateSize(aPrefix.GetPrefixLength()))); in AddPrefix()
853AppendTlv(ServiceTlv::CalculateSize(aService.GetEnterpriseNumber(), serviceData.GetLength()))); in AddService()
Dnetwork_data.cpp642 NetworkDataTlv *MutableNetworkData::AppendTlv(uint16_t aTlvSize) in AppendTlv() function in ot::NetworkData::MutableNetworkData