Home
last modified time | relevance | path

Searched refs:Section (Results 1 – 17 of 17) sorted by relevance

/openthread-latest/src/core/net/
Dmdns.hpp743 enum Section : uint8_t enum in ot::Dns::Multicast::Core
808 uint16_t GetFor(Section aSection) const { return mCounts[aSection]; } in GetFor()
809 void Increment(Section aSection) { mCounts[aSection]++; } in Increment()
898 void MarkAsAppended(TxMessage &aTxMessage, Section aSection);
927 Section mAppendSection;
975 typedef void (*NameAppender)(Entry &aEntry, TxMessage &aTxMessage, Section aSection);
987 void AppendKeyRecordTo(TxMessage &aTxMessage, Section aSection, NameAppender aNameAppender);
989 Section aSection,
1067 void AppendAddressRecordsTo(TxMessage &aTxMessage, Section aSection);
1068 void AppendKeyRecordTo(TxMessage &aTxMessage, Section aSection);
[all …]
Ddns_client.hpp282 enum Section : uint8_t enum in ot::Dns::Client::Response
291 void SelectSection(Section aSection, uint16_t &aOffset, uint16_t &aNumRecord) const;
292 Error CheckForHostNameAlias(Section aSection, Name &aHostName) const;
293 Error FindHostAddress(Section aSection,
299 …Error FindARecord(Section aSection, const Name &aHostName, uint16_t aIndex, ARecord &aARecord) con…
304 Error ReadServiceInfo(Section aSection, const Name &aName, ServiceInfo &aServiceInfo) const;
305 Error ReadTxtRecord(Section aSection, const Name &aName, ServiceInfo &aServiceInfo) const;
Dmdns.cpp414 void Core::UpdateCacheFlushFlagIn(ResourceRecord &aResourceRecord, Section aSection, bool aIsLegacy… in UpdateCacheFlushFlagIn()
850 void Core::RecordInfo::MarkAsAppended(TxMessage &aTxMessage, Section aSection) in MarkAsAppended()
1380 void Core::Entry::AppendKeyRecordTo(TxMessage &aTxMessage, Section aSection, NameAppender aNameAppe… in AppendKeyRecordTo()
1411 Section aSection, in AppendNsecRecordTo()
1744 void Core::HostEntry::AppendAddressRecordsTo(TxMessage &aTxMessage, Section aSection) in AppendAddressRecordsTo()
1773 void Core::HostEntry::AppendKeyRecordTo(TxMessage &aTxMessage, Section aSection) in AppendKeyRecordTo()
1778 void Core::HostEntry::AppendNsecRecordTo(TxMessage &aTxMessage, Section aSection) in AppendNsecRecordTo()
1798 void Core::HostEntry::AppendEntryName(Entry &aEntry, TxMessage &aTxMessage, Section aSection) in AppendEntryName()
1803 void Core::HostEntry::AppendNameTo(TxMessage &aTxMessage, Section aSection) in AppendNameTo()
2541 void Core::ServiceEntry::AppendSrvRecordTo(TxMessage &aTxMessage, Section aSection) in AppendSrvRecordTo()
[all …]
Ddns_client.cpp131 void Client::Response::SelectSection(Section aSection, uint16_t &aOffset, uint16_t &aNumRecord) con… in SelectSection()
154 Error Client::Response::CheckForHostNameAlias(Section aSection, Name &aHostName) const in CheckForHostNameAlias()
200 Error Client::Response::FindHostAddress(Section aSection, in FindHostAddress()
225 Error Client::Response::FindARecord(Section aSection, const Name &aHostName, uint16_t aIndex, AReco… in FindARecord()
263 Error Client::Response::ReadServiceInfo(Section aSection, const Name &aName, ServiceInfo &aServiceI… in ReadServiceInfo()
321 Error Client::Response::ReadTxtRecord(Section aSection, const Name &aName, ServiceInfo &aServiceInf… in ReadTxtRecord()
426 Section section; in GetAddress()
593 Section srvSection; in GetServiceInfo()
594 Section txtSection; in GetServiceInfo()
660 Section section = kAdditionalDataSection; in GetHostAddress()
Ddnssd_server.cpp759 static const Section kSections[] = {kAnswerSection, kAdditionalDataSection}; in ResolveBySrp()
764 Section srvSection; in ResolveBySrp()
765 Section txtSection; in ResolveBySrp()
836 for (Section section : kSections) in ResolveBySrp()
1171 static const Section kSections[] = {kAnswerSection, kAdditionalDataSection}; in Answer()
1174Section srvSection = ((mType == kSrvQuery) || (mType == kSrvTxtQuery)) ? kAnswerSection : kAdditio… in Answer()
1175Section txtSection = ((mType == kTxtQuery) || (mType == kSrvTxtQuery)) ? kAnswerSection : kAdditio… in Answer()
1186 for (Section section : kSections) in Answer()
Ddnssd_server.hpp329 enum Section : uint8_t enum in ot::Dns::ServiceDiscovery::Server
444 Section mSection;
/openthread-latest/third_party/jlink/SEGGER_RTT_V640/RTT/
DSEGGER_RTT.c193 #define SEGGER_RTT_PUT_SECTION(Var, Section) __attribute__ ((section (Section))) Var argument
195 #define SEGGER_RTT_PUT_SECTION(Var, Section) RTT_PRAGMA(location=Section) \ argument
198 #define SEGGER_RTT_PUT_SECTION(Var, Section) __attribute__ ((section (Section), zero_init)) Var argument
203 #define SEGGER_RTT_PUT_SECTION(Var, Section) Var argument
/openthread-latest/third_party/mbedtls/repo/tests/suites/
Dtest_suite_aes.ofb.data3 # Test Vectors - Appendix F, Section F.4
Dtest_suite_gcm.function497 /* NISP SP 800-38D, Section 5.2.1.1 requires that bit length of IV should
535 /* NISP SP 800-38D, Section 5.2.1.1 requires that bit length of AD should
576 /* NISP SP 800-38D, Section 5.2.1.1 requires that bit length of input should
Dtest_suite_ssl.data2876 # Application Data record sent by Client in 1-RTT example of RFC 8448, Section 3
2895 # Application Data record sent by Server in 1-RTT example of RFC 8448, Section 3
2925 # For the resumption PSK, see Section 3, 'generate resumption secret "tls13 resumption"'
2926 # For all other data, see Section 4, 'construct a ClientHello handshake message:'
/openthread-latest/tests/unit/
Dtest_mdns.cpp218 enum Section : uint8_t enum
602 const DnsRecords &RecordsFor(Section aSection) const in RecordsFor()
775 void Validate(const Core::Host &aHost, Section aSection, GoodBye aIsGoodBye = kNotGoodBye) const in Validate()
801 Section aSection, in Validate()
851 void Validate(const Core::Key &aKey, Section aSection, GoodBye aIsGoodBye = kNotGoodBye) const in Validate()
1166 static void SendPtrResponse(const char *aName, const char *aPtrName, uint32_t aTtl, Section aSectio… in SendPtrResponse()
1213 Section aSection) in SendSrvResponse()
1261 Section aSection) in SendTxtResponse()
1306 Section aSection) in SendHostAddrResponse()
1358 static void SendResponseWithEmptyKey(const char *aName, Section aSection) in SendResponseWithEmptyKey()
/openthread-latest/third_party/mbedtls/repo/framework/
DLICENSE306 distribute such modifications or work under the terms of Section 1
349 under Section 2) in object code or executable form under the terms of
/openthread-latest/third_party/mbedtls/repo/
DLICENSE306 distribute such modifications or work under the terms of Section 1
349 under Section 2) in object code or executable form under the terms of
DChangeLog3706 as recommended in RFC 6347 Section 4.1.2.7.
3997 in RFC 6347 Section 4.3.1. This could cause the execution of the
/openthread-latest/third_party/mbedtls/repo/docs/architecture/psa-migration/
Dpsa-limitations.md152 RFC 4055 Section 3.1 defines the encoding of RSA-PSS that's used in X.509.
/openthread-latest/src/cli/
DREADME.md1459 …n provided by server/resolver in the browse response (in additional Data Section). This is a SHOUL…
/openthread-latest/doc/
DDoxyfile.in1046 # See also: Section \class.