Home
last modified time | relevance | path

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

/openthread-latest/src/core/mac/
Dmac_header_ie.hpp218 void SetSubType(uint8_t aSubType) { mSubType = aSubType; } in SetSubType() argument
Dmac_frame.hpp648 …uint8_t *GetThreadIe(uint8_t aSubType) { return AsNonConst(AsConst(this)->GetThreadIe(aSubType)); } in GetThreadIe() argument
659 const uint8_t *GetThreadIe(uint8_t aSubType) const;
Dmac_frame.cpp1147 const uint8_t *Frame::GetThreadIe(uint8_t aSubType) const in GetThreadIe()
1165 …dorIe->GetVendorOui() == ThreadIe::kVendorOuiThreadCompanyId && vendorIe->GetSubType() == aSubType) in GetThreadIe()
/openthread-latest/src/core/common/
Dmessage.hpp561 void SetSubType(SubType aSubType) { GetMetadata().mSubType = aSubType; } in SetSubType() argument
/openthread-latest/src/core/net/
Dmdns.cpp2602 …d Core::ServiceEntry::AppendPtrRecordTo(TxMessage &aTxMessage, Section aSection, SubType *aSubType) in AppendPtrRecordTo() argument
2608 RecordInfo &ptrRecord = (aSubType == nullptr) ? mPtrRecord : aSubType->mPtrRecord; in AppendPtrRecordTo()
2621 if (aSubType == nullptr) in AppendPtrRecordTo()
2627 AppendSubServiceNameTo(aTxMessage, aSection, *aSubType); in AppendPtrRecordTo()
2717 …e::ServiceEntry::AppendSubServiceNameTo(TxMessage &aTxMessage, Section aSection, SubType &aSubType) in AppendSubServiceNameTo() argument
2721 …outcome = aTxMessage.AppendLabel(aSection, aSubType.mLabel.AsCString(), aSubType.mSubServiceNameOf… in AppendSubServiceNameTo()
Dmdns.hpp1145 … void AppendPtrRecordTo(TxMessage &aTxMessage, Section aSection, SubType *aSubType = nullptr);
1151 void AppendSubServiceNameTo(TxMessage &aTxMessage, Section aSection, SubType &aSubType);
/openthread-latest/tests/unit/
Dtest_dnssd_discovery_proxy.cpp515 bool SubTypeMatches(const char *aSubType) const { return !strcmp(mSubTypeLabel, aSubType); } in SubTypeMatches()