/openthread-3.5.0/src/core/net/ |
D | nat64_translator.hpp | 362 bool Matches(const Ip4::Address &aIp4) const { return mIp4 == aIp4; } in Matches() function in ot::Nat64::Translator::AddressMapping 363 bool Matches(const Ip6::Address &aIp6) const { return mIp6 == aIp6; } in Matches() function in ot::Nat64::Translator::AddressMapping 364 bool Matches(const TimeMilli aNow) const { return mExpiry < aNow; } in Matches() function in ot::Nat64::Translator::AddressMapping
|
D | netif.hpp | 219 bool Matches(const Address &aAddress) const { return GetAddress() == aAddress; } in Matches() function in ot::Ip6::Netif::UnicastAddress 266 bool Matches(const Address &aAddress) const { return GetAddress() == aAddress; } in Matches() function in ot::Ip6::Netif::MulticastAddress
|
D | tcp6.hpp | 407 bool Matches(const MessageInfo &aMessageInfo) const; 534 bool Matches(const MessageInfo &aMessageInfo) const;
|
D | srp_server.hpp | 407 bool Matches(const char *aInstanceName) const; 565 bool Matches(const char *aFullName) const; 918 bool Matches(ServiceUpdateId aId) const { return mId == aId; } in Matches() function in ot::Srp::Server::UpdateMetadata
|
D | dns_dso.hpp | 732 bool Matches(MessageId aMessageId) const { return mMessageId == aMessageId; } in Matches() function 817 … bool Matches(const Ip6::SockAddr &aPeerSockAddr) const { return mPeerSockAddr == aPeerSockAddr; } in Matches() function in ot::Dns::Dso::Connection
|
D | srp_client.hpp | 312 bool Matches(const Service &aOther) const; 313 bool Matches(ItemState aState) const { return GetState() == aState; } in Matches() function in ot::Srp::Client::Service
|
D | udp6.hpp | 139 bool Matches(const MessageInfo &aMessageInfo) const;
|
/openthread-3.5.0/src/core/utils/ |
D | link_metrics_manager.hpp | 137 … bool Matches(const Mac::ExtAddress &aExtAddress) const { return mExtAddress == aExtAddress; } in Matches() function 138 bool Matches(const LinkMetricsManager &aLinkMetricsMgr);
|
D | power_calibration.hpp | 143 bool Matches(int16_t aActualPower) const { return aActualPower == mActualPower; } in Matches() function in ot::Utils::PowerCalibration::CalibratedPowerEntry
|
/openthread-3.5.0/tests/unit/ |
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_network_data.cpp | 633 bool Matches(Service::DnsSrpAnycast::Info aInfo) const in TestNetworkDataDsnSrpServices() function 649 bool Matches(Service::DnsSrpUnicast::Info aInfo) const in TestNetworkDataDsnSrpServices() function 707 … VerifyOrQuit(entry.Matches(anycastInfo), "GetNextDnsSrpAnycastInfo() returned incorrect info"); in TestNetworkDataDsnSrpServices() 720 VerifyOrQuit(kAnycastEntries[kPreferredAnycastEntryIndex].Matches(anycastInfo), in TestNetworkDataDsnSrpServices() 734 … 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
|
/openthread-3.5.0/src/core/radio/ |
D | trel_interface.hpp | 119 … bool Matches(const Mac::ExtAddress &aExtAddress) const { return GetExtAddress() == aExtAddress; } in Matches() function in ot::Trel::Interface::Peer 130 bool Matches(const Ip6::SockAddr &aSockAddr) const { return GetSockAddr() == aSockAddr; } in Matches() function in ot::Trel::Interface::Peer
|
/openthread-3.5.0/src/core/thread/ |
D | neighbor.hpp | 183 bool Matches(const Neighbor &aNeighbor) const; 325 bool Matches(const AddressMatcher &aMatcher) const { return aMatcher.Matches(*this); } in Matches() function in ot::Neighbor
|
D | neighbor_table.cpp | 54 if (mle.GetParent().Matches(aMatcher)) in FindParent() 58 else if (mle.GetParentCandidate().Matches(aMatcher)) in FindParent()
|
D | link_metrics_types.hpp | 343 bool Matches(const uint8_t &aSeriesId) const { return mSeriesId == aSeriesId; } in Matches() function in ot::LinkMetrics::SeriesInfo
|
D | neighbor.cpp | 68 bool Neighbor::AddressMatcher::Matches(const Neighbor &aNeighbor) const in Matches() function in ot::Neighbor::AddressMatcher
|
/openthread-3.5.0/examples/platforms/utils/ |
D | link_metrics.cpp | 139 …bool Matches(const otShortAddress &aShortAddress) const { return mShortAddress == aShortAddress; }; in Matches() function in LinkMetricsDataInfo 141 bool Matches(const otExtAddress &aExtAddress) const in Matches() function in LinkMetricsDataInfo
|
/openthread-3.5.0/src/core/common/ |
D | array.hpp | 467 if (element.Matches(aIndicator)) in FindMatching() 544 if (entry.Matches(aIndicator)) in RemoveAllMatching()
|
D | notifier.cpp | 66 VerifyOrExit(!callback.Matches(aCallback, aContext), error = kErrorAlready); in RegisterCallback() 88 if (callback.Matches(aCallback, aContext)) in RemoveCallback()
|
D | linked_list.hpp | 397 if (entry->Matches(aIndicator)) in RemoveAllMatching() 492 if (entry->Matches(aIndicator)) in FindMatching()
|
D | callback.hpp | 118 bool Matches(HandlerType aHandler, void *aContext) const in Matches() function in ot::CallbackBase
|
D | heap_array.hpp | 475 if (element.Matches(aIndicator)) in FindMatching()
|
/openthread-3.5.0/src/core/border_router/ |
D | routing_manager.hpp | 700 bool Matches(const Matcher &aMatcher) const; 701 bool Matches(const Checker &aChecker) const; 702 bool Matches(const ExpirationChecker &aChecker) const; 746 bool Matches(const Ip6::Address &aAddress) const { return aAddress == mAddress; } in Matches() function 747 bool Matches(EmptyChecker) const { return mEntries.IsEmpty(); } in Matches() function 896 bool Matches(const Ip6::Prefix &aPrefix) const { return mPrefix == aPrefix; } in Matches() function
|
/openthread-3.5.0/src/core/meshcop/ |
D | meshcop.hpp | 213 bool Matches(const Mac::ExtAddress &aJoinerId) const;
|