Searched refs:aTlvType (Results 1 – 8 of 8) sorted by relevance
| /openthread-latest/src/core/meshcop/ |
| D | dataset_manager.hpp | 237 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;
|
| D | tcat_agent.cpp | 326 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()
|
| D | dataset_manager.cpp | 745 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()
|
| D | tcat_agent.hpp | 374 bool CanProcessTlv(uint8_t aTlvType) const; 375 CommandClass GetCommandClass(uint8_t aTlvType) const;
|
| /openthread-latest/src/core/thread/ |
| D | network_diagnostic.hpp | 188 Error AppendDiagTlv(uint8_t aTlvType, Message &aMessage);
|
| D | mle.hpp | 976 void Add(uint8_t aTlvType); 1045 bool ContainsTlv(Tlv::Type aTlvType) const; 1065 Error ReadChallengeOrResponse(uint8_t aTlvType, RxChallenge &aRxChallenge) const;
|
| D | mle.cpp | 4500 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()
|
| D | network_diagnostic.cpp | 243 Error Server::AppendDiagTlv(uint8_t aTlvType, Message &aMessage) in AppendDiagTlv() argument 247 switch (aTlvType) in AppendDiagTlv()
|