Home
last modified time | relevance | path

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

/openthread-latest/src/core/common/
Das_core_type.hpp140 #define DefineCoreType(BaseType, SubType) \ argument
143 using Type = SubType; \
Dmessage.hpp300 enum SubType : uint8_t enum in ot::Message
554 SubType GetSubType(void) const { return static_cast<SubType>(GetMetadata().mSubType); } in GetSubType()
561 void SetSubType(SubType aSubType) { GetMetadata().mSubType = aSubType; } in SetSubType()
/openthread-latest/src/core/meshcop/
Dsecure_transport.hpp282 Message::SubType mMessageSubType;
729 Message::SubType aMessageSubType);
Dsecure_transport.cpp389 Message::SubType msgSubType = mMessageSubType; in HandleMbedtlsTransmit()
851 Message::SubType aMessageSubType) in Transmit()
/openthread-latest/src/core/net/
Dmdns.hpp1119 …class SubType : public LinkedListEntry<SubType>, public Heap::Allocatable<SubType>, private ot::No… class in ot::Dns::Multicast::Core::ServiceEntry
1127 SubType *mNext;
1145 … void AppendPtrRecordTo(TxMessage &aTxMessage, Section aSection, SubType *aSubType = nullptr);
1151 void AppendSubServiceNameTo(TxMessage &aTxMessage, Section aSection, SubType &aSubType);
1164 OwningList<SubType> mSubTypes;
Dmdns.cpp1920 const SubType *subType; in CanAnswerSubType()
1950 for (SubType &subType : mSubTypes) in Register()
1965 SubType *newSubType = SubType::AllocateAndInit(label); in Register()
2024 for (SubType &subType : mSubTypes) in Unregister()
2133 SubType *subType = mSubTypes.FindMatching(aSubLabel); in AnswerServiceTypeQuestion()
2161 const SubType *subType = mSubTypes.FindMatching(aSubLabel); in ShouldSuppressKnownAnswer()
2191 for (SubType &subType : mSubTypes) in ClearAppendState()
2226 for (SubType &subType : mSubTypes) in StartAnnouncing()
2289 for (SubType &subType : mSubTypes) in PrepareResponseRecords()
2367 for (SubType &subType : mSubTypes) in UpdateRecordsState()
[all …]
/openthread-latest/tests/unit/
Dtest_message.cpp73 message->SetSubType(Message::SubType::kSubTypeJoinerEntrust); in TestMessage()