| /openthread-latest/src/core/net/ |
| D | mdns.hpp | 837 bool Matches(const Ip6::Address *aAddresses, uint16_t aNumAddresses) const; 1037 bool Matches(const Name &aName) const; 1038 bool Matches(const Host &aHost) const; 1039 bool Matches(const Key &aKey) const; 1040 bool Matches(const Heap::String &aName) const; 1041 bool Matches(State aState) const { return GetState() == aState; } in Matches() function in ot::Dns::Multicast::Core::HostEntry 1042 bool Matches(const HostEntry &aEntry) const { return (this == &aEntry); } in Matches() function in ot::Dns::Multicast::Core::HostEntry 1094 bool Matches(const Name &aFullName) const; 1095 bool Matches(const Service &aService) const; 1096 bool Matches(const Key &aKey) const; [all …]
|
| D | nat64_translator.hpp | 344 bool Matches(const Ip4::Address &aIp4) const { return mIp4 == aIp4; } in Matches() function in ot::Nat64::Translator::AddressMapping 345 bool Matches(const Ip6::Address &aIp6) const { return mIp6 == aIp6; } in Matches() function in ot::Nat64::Translator::AddressMapping 346 bool Matches(const TimeMilli aNow) const { return mExpiry < aNow; } in Matches() function in ot::Nat64::Translator::AddressMapping
|
| D | mdns.cpp | 519 bool Core::AddressArray::Matches(const Ip6::Address *aAddresses, uint16_t aNumAddresses) const in Matches() function in ot::Dns::Multicast::Core::AddressArray 585 if (!mIsPresent || !aDataProperty.Matches(aData, aLength)) in UpdateProperty() 595 if (!mIsPresent || !aAddrProperty.Matches(aAddrs, aNumAddrs)) in UpdateProperty() 1481 bool Core::HostEntry::Matches(const Name &aName) const in Matches() function in ot::Dns::Multicast::Core::HostEntry 1483 return aName.Matches(/* aFirstLabel */ nullptr, mName.AsCString(), kLocalDomain); in Matches() 1486 bool Core::HostEntry::Matches(const Host &aHost) const { return NameMatch(mName, aHost.mHostName); } in Matches() function in ot::Dns::Multicast::Core::HostEntry 1488 bool Core::HostEntry::Matches(const Key &aKey) const { return !IsKeyForService(aKey) && NameMatch(m… in Matches() function in ot::Dns::Multicast::Core::HostEntry 1490 bool Core::HostEntry::Matches(const Heap::String &aName) const { return NameMatch(mName, aName); } in Matches() function in ot::Dns::Multicast::Core::HostEntry 1891 bool Core::ServiceEntry::Matches(const Name &aFullName) const in Matches() function in ot::Dns::Multicast::Core::ServiceEntry 1893 return aFullName.Matches(mServiceInstance.AsCString(), mServiceType.AsCString(), kLocalDomain); in Matches() [all …]
|
| D | srp_advertising_proxy.hpp | 239 bool Matches(const CompletionChecker &) const { return IsCompleted(); } in Matches() function 240 …bool Matches(const ExpirationChecker &aChecker) const { return (mExpireTime <= aChecker.mNow)… in Matches() function
|
| D | tcp6.hpp | 390 bool Matches(const MessageInfo &aMessageInfo) const; 510 bool Matches(const MessageInfo &aMessageInfo) const;
|
| D | netif.hpp | 215 bool Matches(const Address &aAddress) const { return GetAddress() == aAddress; } in Matches() function in ot::Ip6::Netif::UnicastAddress 257 bool Matches(const Address &aAddress) const { return GetAddress() == aAddress; } in Matches() function in ot::Ip6::Netif::MulticastAddress
|
| /openthread-latest/tests/unit/ |
| D | test_mdns.cpp | 147 …bool Matches(const char *aName) const { return StringMatch(mName, aName, kStringCaseInsensi… in Matches() function 185 bool Matches(const char *aName) const { return mName.Matches(aName); } in Matches() function 228 bool Matches(const Array<uint8_t, kMaxDataSize> &aDataArray) const in Matches() function 263 bool Matches(const char *aName) const { return mName.Matches(aName); } in Matches() function 403 … if (record.Matches(aFullName.AsCString()) && (record.mType == ResourceRecord::kTypeAaaa) && in ContainsAaaa() 428 … if (record.Matches(aFullName.AsCString()) && (record.mType == ResourceRecord::kTypeKey) && in ContainsKey() 429 aKeyData.Matches(record.mData.mData)) in ContainsKey() 456 if (record.Matches(aFullName.AsCString()) && (record.mType == ResourceRecord::kTypeSrv)) in ContainsSrv() 464 VerifyOrExit(record.mData.mSrv.mHostName.Matches(hostName.AsCString())); in ContainsSrv() 492 … if (record.Matches(aFullName.AsCString()) && (record.mType == ResourceRecord::kTypeTxt) && in ContainsTxt() [all …]
|
| D | test_heap_string.cpp | 174 VerifyOrQuit(aData.Matches(aBytes, aLength)); in VerifyData() 175 VerifyOrQuit(!aData.Matches(aBytes, aLength + 1)); in VerifyData() 182 VerifyOrQuit(aData.Matches(nullptr, 0)); in VerifyData() 194 VerifyOrQuit(aData.Matches(buffer, aLength)); in VerifyData() 196 VerifyOrQuit(!aData.Matches(buffer, aLength)); in VerifyData() 234 VerifyOrQuit(data.Matches(nullptr, 0)); in TestHeapData() 235 VerifyOrQuit(data.Matches(kData1, 0)); in TestHeapData() 236 VerifyOrQuit(!data.Matches(kData1, 1)); in TestHeapData()
|
| D | test_array.cpp | 198 bool Matches(const char *aName) const { return strcmp(aName, mName) == 0; } in TestArrayCopyAndFindMatching() function 199 bool Matches(uint16_t aYear) const { return aYear == mYear; } in TestArrayCopyAndFindMatching() function 201 bool Matches(MatchMode aMatchMode) const in TestArrayCopyAndFindMatching() function 389 VerifyOrQuit(!entry.Matches(matchMode)); in TestArrayCopyAndFindMatching() 396 if (!entry.Matches(matchMode)) in TestArrayCopyAndFindMatching()
|
| D | test_dns.cpp | 555 … VerifyOrQuit(dnsName.Matches(test.mFirstLabel, test.mLabels, test.mDomain) == test.mShouldMatch); in TestDnsName() 561 … VerifyOrQuit(dnsName.Matches(test.mFirstLabel, test.mLabels, test.mDomain) == test.mShouldMatch); in TestDnsName() 569 VerifyOrQuit(dnsName.Matches("Name.With.Dot", "_srv._udp", "local.")); in TestDnsName() 570 VerifyOrQuit(dnsName.Matches("nAme.with.dOT", "_srv._udp", "local.")); in TestDnsName() 571 VerifyOrQuit(dnsName.Matches("Name.With.Dot", "_srv", "_udp.local.")); in TestDnsName() 573 VerifyOrQuit(!dnsName.Matches("Name", "With.Dot._srv._udp", "local.")); in TestDnsName() 574 VerifyOrQuit(!dnsName.Matches("Name.", "With.Dot._srv._udp", "local.")); in TestDnsName() 575 VerifyOrQuit(!dnsName.Matches("Name.With", "Dot._srv._udp", "local.")); in TestDnsName() 577 VerifyOrQuit(!dnsName.Matches("Name.With.Dott", "_srv._udp", "local.")); in TestDnsName() 578 VerifyOrQuit(!dnsName.Matches("Name.With.Dot.", "_srv._udp", "local.")); in TestDnsName() [all …]
|
| D | test_network_data.cpp | 641 bool Matches(Service::DnsSrpAnycastInfo aInfo) const in TestNetworkDataDsnSrpServices() function 658 bool Matches(const Service::DnsSrpUnicastInfo &aInfo) const in TestNetworkDataDsnSrpServices() function 755 … VerifyOrQuit(entry.Matches(anycastInfo), "GetNextDnsSrpAnycastInfo() returned incorrect info"); in TestNetworkDataDsnSrpServices() 768 VerifyOrQuit(kAnycastEntries[kPreferredAnycastEntryIndex].Matches(anycastInfo), in TestNetworkDataDsnSrpServices() 783 … VerifyOrQuit(entry.Matches(unicastInfo), "GetNextDnsSrpUnicastInfo() returned incorrect info"); in TestNetworkDataDsnSrpServices() 801 … VerifyOrQuit(entry.Matches(unicastInfo), "GetNextDnsSrpUnicastInfo() returned incorrect info"); in TestNetworkDataDsnSrpServices()
|
| D | test_linked_list.cpp | 69 bool Matches(const char *aName) const { return strcmp(mName, aName) == 0; } in Matches() function 70 bool Matches(uint16_t aId) const { return mId == aId; } in Matches() function 71 bool Matches(Type aType) const { return mType == aType; } in Matches() function 72 bool Matches(Type aType, uint16_t aId) const { return (mType == aType) && (mId == aId); } in Matches() function
|
| /openthread-latest/tests/nexus/platform/ |
| D | nexus_settings.hpp | 63 …bool Matches(const IndexMatcher &aIndexMataher) const { return (AsNonConst(aIndexMataher).mIndex--… in Matches() function 69 bool Matches(uint16_t aKey) const { return mKey == aKey; } in Matches() function
|
| D | nexus_radio.hpp | 62 bool Matches(const Mac::Address &aAddress, Mac::PanId aPanId) const;
|
| /openthread-latest/src/core/utils/ |
| D | link_metrics_manager.hpp | 136 … bool Matches(const Mac::ExtAddress &aExtAddress) const { return mExtAddress == aExtAddress; } in Matches() function 137 bool Matches(const LinkMetricsManager &aLinkMetricsMgr);
|
| D | power_calibration.hpp | 137 bool Matches(int16_t aActualPower) const { return aActualPower == mActualPower; } in Matches() function in ot::Utils::PowerCalibration::CalibratedPowerEntry
|
| /openthread-latest/src/core/common/ |
| D | callback.hpp | 110 bool Matches(HandlerType aHandler, void *aContext) const in Matches() function in ot::CallbackBase 125 return Matches(aOtherCallback.mHandler, aOtherCallback.mContext); in operator ==()
|
| D | array.hpp | 433 if (element.Matches(aIndicator)) in FindMatching() 507 if (entry.Matches(aIndicator)) in RemoveAllMatching()
|
| D | linked_list.hpp | 370 if (entry->Matches(aArgs...)) in RemoveAllMatching() 455 if (entry->Matches(aArgs...)) in FindMatchingWithPrev()
|
| D | heap_data.hpp | 168 bool Matches(const uint8_t *aBuffer, uint16_t aLength) const;
|
| /openthread-latest/src/core/thread/ |
| D | neighbor.hpp | 173 bool Matches(const Neighbor &aNeighbor) const; 300 bool Matches(const AddressMatcher &aMatcher) const { return aMatcher.Matches(*this); } in Matches() function in ot::Neighbor
|
| D | neighbor_table.cpp | 51 if (mle.GetParent().Matches(aMatcher)) in FindParent() 55 else if (mle.GetParentCandidate().Matches(aMatcher)) in FindParent()
|
| /openthread-latest/src/core/radio/ |
| D | trel_interface.hpp | 131 … bool Matches(const Mac::ExtAddress &aExtAddress) const { return GetExtAddress() == aExtAddress; } in Matches() function in ot::Trel::Interface::Peer 141 bool Matches(const Ip6::SockAddr &aSockAddr) const { return GetSockAddr() == aSockAddr; } in Matches() function in ot::Trel::Interface::Peer
|
| /openthread-latest/examples/platforms/utils/ |
| D | link_metrics.cpp | 134 …bool Matches(const otShortAddress &aShortAddress) const { return mShortAddress == aShortAddress; }; in Matches() function in LinkMetricsDataInfo 136 bool Matches(const otExtAddress &aExtAddress) const in Matches() function in LinkMetricsDataInfo
|
| /openthread-latest/src/core/border_router/ |
| D | routing_manager.hpp | 701 bool Matches(const Ip6::Prefix &aPrefix) const { return (mPrefix == aPrefix); } in Matches() function in ot::BorderRouter::RoutingManager::LifetimedPrefix 702 …bool Matches(const ExpirationChecker &aChecker) const { return (GetExpireTime() <= aChecker.mNow);… in Matches() function in ot::BorderRouter::RoutingManager::LifetimedPrefix 792 bool Matches(uint16_t aRloc16) const { return mRloc16 == aRloc16; } in Matches() function 793 … bool Matches(const Filter &aFilter) const { return !aFilter.mExcludeRlocs.Contains(mRloc16); } in Matches() function 915 bool Matches(const Ip6::Address &aAddress) const { return aAddress == mAddress; } in Matches() function 916 bool Matches(const EmptyChecker &aChecker); 1186 bool Matches(const Ip6::Prefix &aPrefix) const { return mPrefix == aPrefix; } in Matches() function 1245 bool Matches(const Ip6::Prefix &aPrefix) const { return (mPrefix == aPrefix); } in Matches() function
|