Home
last modified time | relevance | path

Searched refs:aTlvType (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/src/core/meshcop/
Ddataset_manager.hpp237 void Add(uint8_t aTlvType);
300 …void SaveTlvInSecureStorageAndClearValue(Dataset &aDataset, Tlv::Type aTlvType, KeyRef aKeyRef) c…
301 Error ReadTlvFromSecureStorage(Dataset &aDataset, Tlv::Type aTlvType, KeyRef aKeyRef) const;
Dtcat_agent.cpp326 TcatAgent::CommandClass TcatAgent::GetCommandClass(uint8_t aTlvType) const in GetCommandClass()
334 if (aTlvType <= kGeneralTlvs) in GetCommandClass()
338 else if (aTlvType <= kCommissioningTlvs) in GetCommandClass()
342 else if (aTlvType <= kExtractionTlvs) in GetCommandClass()
346 else if (aTlvType <= kTlvDecommissioningTlvs) in GetCommandClass()
350 else if (aTlvType <= kApplicationTlvs) in GetCommandClass()
360 bool TcatAgent::CanProcessTlv(uint8_t aTlvType) const in CanProcessTlv()
362 CommandClass tlvCommandClass = GetCommandClass(aTlvType); in CanProcessTlv()
Ddataset_manager.cpp745 void DatasetManager::TlvList::Add(uint8_t aTlvType) in Add() argument
747 if (!Contains(aTlvType)) in Add()
749 IgnoreError(PushBack(aTlvType)); in Add()
815 void DatasetManager::SaveTlvInSecureStorageAndClearValue(Dataset &aDataset, Tlv::Type aTlvType, Key… in SaveTlvInSecureStorageAndClearValue() argument
819 Tlv *tlv = aDataset.FindTlv(aTlvType); in SaveTlvInSecureStorageAndClearValue()
833 Error DatasetManager::ReadTlvFromSecureStorage(Dataset &aDataset, Tlv::Type aTlvType, KeyRef aKeyRe… in ReadTlvFromSecureStorage() argument
838 Tlv *tlv = aDataset.FindTlv(aTlvType); in ReadTlvFromSecureStorage()
Dtcat_agent.hpp374 bool CanProcessTlv(uint8_t aTlvType) const;
375 CommandClass GetCommandClass(uint8_t aTlvType) const;
/openthread-latest/src/core/thread/
Dnetwork_diagnostic.hpp188 Error AppendDiagTlv(uint8_t aTlvType, Message &aMessage);
Dmle.hpp976 void Add(uint8_t aTlvType);
1045 bool ContainsTlv(Tlv::Type aTlvType) const;
1065 Error ReadChallengeOrResponse(uint8_t aTlvType, RxChallenge &aRxChallenge) const;
Dmle.cpp4500 void Mle::TlvList::Add(uint8_t aTlvType) in Add() argument
4502 VerifyOrExit(!Contains(aTlvType)); in Add()
4504 if (PushBack(aTlvType) != kErrorNone) in Add()
4506 LogWarn("Failed to include TLV %d", aTlvType); in Add()
5361 bool Mle::RxMessage::ContainsTlv(Tlv::Type aTlvType) const in ContainsTlv()
5365 return Tlv::FindTlvValueOffsetRange(*this, aTlvType, offsetRange) == kErrorNone; in ContainsTlv()
5391 Error Mle::RxMessage::ReadChallengeOrResponse(uint8_t aTlvType, RxChallenge &aRxChallenge) const in ReadChallengeOrResponse() argument
5396 SuccessOrExit(error = Tlv::FindTlvValueOffsetRange(*this, aTlvType, offsetRange)); in ReadChallengeOrResponse()
Dnetwork_diagnostic.cpp243 Error Server::AppendDiagTlv(uint8_t aTlvType, Message &aMessage) in AppendDiagTlv() argument
247 switch (aTlvType) in AppendDiagTlv()