Home
last modified time | relevance | path

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

/openthread-3.6.0/src/core/meshcop/
Dtcat_agent.cpp319 TcatAgent::CommandClass TcatAgent::GetCommandClass(uint8_t aTlvType) const in GetCommandClass()
327 if (aTlvType <= kGeneralTlvs) in GetCommandClass()
331 else if (aTlvType <= kCommissioningTlvs) in GetCommandClass()
335 else if (aTlvType <= kExtractionTlvs) in GetCommandClass()
339 else if (aTlvType <= kTlvDecommissioningTlvs) in GetCommandClass()
343 else if (aTlvType <= kApplicationTlvs) in GetCommandClass()
353 bool TcatAgent::CanProcessTlv(uint8_t aTlvType) const in CanProcessTlv()
355 CommandClass tlvCommandClass = GetCommandClass(aTlvType); in CanProcessTlv()
Dtcat_agent.hpp337 bool CanProcessTlv(uint8_t aTlvType) const;
338 CommandClass GetCommandClass(uint8_t aTlvType) const;
Ddataset.cpp605 void Dataset::SaveTlvInSecureStorageAndClearValue(Tlv::Type aTlvType, Crypto::Storage::KeyRef aKeyR… in SaveTlvInSecureStorageAndClearValue() argument
609 Tlv *tlv = FindTlv(aTlvType); in SaveTlvInSecureStorageAndClearValue()
623 Error Dataset::ReadTlvFromSecureStorage(Tlv::Type aTlvType, Crypto::Storage::KeyRef aKeyRef) in ReadTlvFromSecureStorage() argument
628 Tlv *tlv = FindTlv(aTlvType); in ReadTlvFromSecureStorage()
Ddataset.hpp954 void SaveTlvInSecureStorageAndClearValue(Tlv::Type aTlvType, Crypto::Storage::KeyRef aKeyRef);
968 Error ReadTlvFromSecureStorage(Tlv::Type aTlvType, Crypto::Storage::KeyRef aKeyRef);
/openthread-3.6.0/src/core/thread/
Dnetwork_diagnostic.hpp177 Error AppendDiagTlv(uint8_t aTlvType, Message &aMessage);
Dmle.hpp997 void Add(uint8_t aTlvType);
1076 Error ReadChallengeOrResponse(uint8_t aTlvType, RxChallenge &aRxChallenge) const;
Dmle.cpp4421 void Mle::TlvList::Add(uint8_t aTlvType) in Add() argument
4423 VerifyOrExit(!Contains(aTlvType)); in Add()
4425 if (PushBack(aTlvType) != kErrorNone) in Add()
4427 LogWarn("Failed to include TLV %d", aTlvType); in Add()
4986 Error Mle::RxMessage::ReadChallengeOrResponse(uint8_t aTlvType, RxChallenge &aRxChallenge) const in ReadChallengeOrResponse() argument
4992 SuccessOrExit(error = Tlv::FindTlvValueOffset(*this, aTlvType, offset, length)); in ReadChallengeOrResponse()
Dnetwork_diagnostic.cpp252 Error Server::AppendDiagTlv(uint8_t aTlvType, Message &aMessage) in AppendDiagTlv() argument
256 switch (aTlvType) in AppendDiagTlv()