Lines Matching refs:Matches

498 bool Core::AddressArray::Matches(const Ip6::Address *aAddresses, uint16_t aNumAddresses) const  in Matches()  function in ot::Dns::Multicast::Core::AddressArray
564 if (!mIsPresent || !aDataProperty.Matches(aData, aLength)) in UpdateProperty()
574 if (!mIsPresent || !aAddrProperty.Matches(aAddrs, aNumAddrs)) in UpdateProperty()
1356 bool Core::HostEntry::Matches(const Name &aName) const in Matches() function in ot::Dns::Multicast::Core::HostEntry
1358 return aName.Matches(/* aFirstLabel */ nullptr, mName.AsCString(), kLocalDomain); in Matches()
1361 bool Core::HostEntry::Matches(const Host &aHost) const { return NameMatch(mName, aHost.mHostName); } in Matches() function in ot::Dns::Multicast::Core::HostEntry
1363 bool Core::HostEntry::Matches(const Key &aKey) const { return !IsKeyForService(aKey) && NameMatch(m… in Matches() function in ot::Dns::Multicast::Core::HostEntry
1365 bool Core::HostEntry::Matches(const Heap::String &aName) const { return NameMatch(mName, aName); } in Matches() function in ot::Dns::Multicast::Core::HostEntry
1752 bool Core::ServiceEntry::Matches(const Name &aFullName) const in Matches() function in ot::Dns::Multicast::Core::ServiceEntry
1754 return aFullName.Matches(mServiceInstance.AsCString(), mServiceType.AsCString(), kLocalDomain); in Matches()
1762 …return mPtrRecord.CanAnswer() && aServiceType.Matches(nullptr, mServiceType.AsCString(), kLocalDom… in MatchesServiceType()
1765 bool Core::ServiceEntry::Matches(const Service &aService) const in Matches() function in ot::Dns::Multicast::Core::ServiceEntry
1770 bool Core::ServiceEntry::Matches(const Key &aKey) const in Matches() function in ot::Dns::Multicast::Core::ServiceEntry
2624 bool Core::ServiceEntry::SubType::Matches(const EmptyChecker &aChecker) const in Matches() function in ot::Dns::Multicast::Core::ServiceEntry::SubType
2670 bool Core::ServiceType::Matches(const Name &aServiceTypeName) const in Matches() function in ot::Dns::Multicast::Core::ServiceType
2672 …return aServiceTypeName.Matches(/* aFirstLabel */ nullptr, mServiceType.AsCString(), kLocalDomain); in Matches()
2675 bool Core::ServiceType::Matches(const Heap::String &aServiceType) const in Matches() function in ot::Dns::Multicast::Core::ServiceType
3474 if (name.Matches(/* aFirstLabel */ nullptr, kServicesDnssdLabels, kLocalDomain)) in ProcessQuestion()
3688 if (aServiceEntry.Matches(Name(*mMessagePtr, offset))) in ShouldSuppressKnownAnswer()
3775 if (aServiceType.Matches(Name(*mMessagePtr, offset))) in ShouldSuppressKnownAnswer()
4084 bool Core::MultiPacketRxMessages::RxMsgEntry::Matches(const AddressInfo &aAddress) const in Matches() function in ot::Dns::Multicast::Core::MultiPacketRxMessages::RxMsgEntry
4095 bool Core::MultiPacketRxMessages::RxMsgEntry::Matches(const ExpireChecker &aExpireChecker) const in Matches() function in ot::Dns::Multicast::Core::MultiPacketRxMessages::RxMsgEntry
4988 bool Core::BrowseCache::Matches(const Name &aFullName) const in Matches() function in ot::Dns::Multicast::Core::BrowseCache
5005 …matches = name.Matches(isSubType ? kSubServiceLabel : nullptr, mServiceType.AsCString(), kLocalDom… in Matches()
5011 bool Core::BrowseCache::Matches(const char *aServiceType, const char *aSubTypeLabel) const in Matches() function in ot::Dns::Multicast::Core::BrowseCache
5030 bool Core::BrowseCache::Matches(const Browser &aBrowser) const in Matches() function in ot::Dns::Multicast::Core::BrowseCache
5032 return Matches(aBrowser.mServiceType, aBrowser.mSubTypeLabel); in Matches()
5035 bool Core::BrowseCache::Matches(const ExpireChecker &aExpireChecker) const { return ShouldDelete(aE… in Matches() function in ot::Dns::Multicast::Core::BrowseCache
5060 VerifyOrExit(Name(fullServiceType).Matches(nullptr, mServiceType.AsCString(), kLocalDomain)); in ProcessResponseRecord()
5279 bool Core::BrowseCache::PtrEntry::Matches(const ExpireChecker &aExpireChecker) const in Matches() function in ot::Dns::Multicast::Core::BrowseCache::PtrEntry
5317 bool Core::ServiceCache::Matches(const Name &aFullName) const in Matches() function in ot::Dns::Multicast::Core::ServiceCache
5319 return aFullName.Matches(mServiceInstance.AsCString(), mServiceType.AsCString(), kLocalDomain); in Matches()
5322 bool Core::ServiceCache::Matches(const char *aServiceInstance, const char *aServiceType) const in Matches() function in ot::Dns::Multicast::Core::ServiceCache
5393 bool Core::SrvCache::Matches(const Name &aFullName) const { return ServiceCache::Matches(aFullName)… in Matches() function in ot::Dns::Multicast::Core::SrvCache
5395 bool Core::SrvCache::Matches(const ServiceName &aServiceName) const in Matches() function in ot::Dns::Multicast::Core::SrvCache
5397 return ServiceCache::Matches(aServiceName.mServiceInstance, aServiceName.mServiceType); in Matches()
5400 bool Core::SrvCache::Matches(const SrvResolver &aResolver) const in Matches() function in ot::Dns::Multicast::Core::SrvCache
5402 return ServiceCache::Matches(aResolver.mServiceInstance, aResolver.mServiceType); in Matches()
5405 bool Core::SrvCache::Matches(const ExpireChecker &aExpireChecker) const { return ShouldDelete(aExpi… in Matches() function in ot::Dns::Multicast::Core::SrvCache
5591 bool Core::TxtCache::Matches(const Name &aFullName) const { return ServiceCache::Matches(aFullName)… in Matches() function in ot::Dns::Multicast::Core::TxtCache
5593 bool Core::TxtCache::Matches(const ServiceName &aServiceName) const in Matches() function in ot::Dns::Multicast::Core::TxtCache
5595 return ServiceCache::Matches(aServiceName.mServiceInstance, aServiceName.mServiceType); in Matches()
5598 bool Core::TxtCache::Matches(const TxtResolver &aResolver) const in Matches() function in ot::Dns::Multicast::Core::TxtCache
5600 return ServiceCache::Matches(aResolver.mServiceInstance, aResolver.mServiceType); in Matches()
5603 bool Core::TxtCache::Matches(const ExpireChecker &aExpireChecker) const { return ShouldDelete(aExpi… in Matches() function in ot::Dns::Multicast::Core::TxtCache
5774 bool Core::AddrCache::Matches(const Name &aFullName) const in Matches() function in ot::Dns::Multicast::Core::AddrCache
5776 return aFullName.Matches(nullptr, mName.AsCString(), kLocalDomain); in Matches()
5779 bool Core::AddrCache::Matches(const char *aName) const { return NameMatch(mName, aName); } in Matches() function in ot::Dns::Multicast::Core::AddrCache
5781 bool Core::AddrCache::Matches(const AddressResolver &aResolver) const { return Matches(aResolver.mH… in Matches() function in ot::Dns::Multicast::Core::AddrCache
5783 bool Core::AddrCache::Matches(const ExpireChecker &aExpireChecker) const { return ShouldDelete(aExp… in Matches() function in ot::Dns::Multicast::Core::AddrCache
6104 bool Core::AddrCache::AddrEntry::Matches(const ExpireChecker &aExpireChecker) const in Matches() function in ot::Dns::Multicast::Core::AddrCache::AddrEntry
6109 bool Core::AddrCache::AddrEntry::Matches(EmptyChecker aChecker) const in Matches() function in ot::Dns::Multicast::Core::AddrCache::AddrEntry