Home
last modified time | relevance | path

Searched refs:NameMatch (Results 1 – 2 of 2) sorted by relevance

/openthread-latest/src/core/net/
Dmdns.cpp399 bool Core::NameMatch(const Heap::String &aHeapString, const char *aName) in NameMatch() function in ot::Dns::Multicast::Core
407 bool Core::NameMatch(const Heap::String &aFirst, const Heap::String &aSecond) in NameMatch() function in ot::Dns::Multicast::Core
411 return !aSecond.IsNull() && NameMatch(aFirst, aSecond.AsCString()); in NameMatch()
575 if (!mIsPresent || !NameMatch(aStringProperty, aString)) in UpdateProperty()
1486 bool Core::HostEntry::Matches(const Host &aHost) const { return NameMatch(mName, aHost.mHostName); } in Matches()
1488 bool Core::HostEntry::Matches(const Key &aKey) const { return !IsKeyForService(aKey) && NameMatch(m… in Matches()
1490 bool Core::HostEntry::Matches(const Heap::String &aName) const { return NameMatch(mName, aName); } in Matches()
1906 …return NameMatch(mServiceInstance, aService.mServiceInstance) && NameMatch(mServiceType, aService.… in Matches()
1911 return IsKeyForService(aKey) && NameMatch(mServiceInstance, aKey.mName) && in Matches()
1912 NameMatch(mServiceType, aKey.mServiceType); in Matches()
[all …]
Dmdns.hpp1123 bool Matches(const char *aLabel) const { return NameMatch(mLabel, aLabel); } in Matches()
1641 …bool Matches(const char *aServiceInstance) const { return NameMatch(mServiceInstance, aServiceIns… in Matches()
1965 static bool NameMatch(const Heap::String &aHeapString, const char *aName);
1966 static bool NameMatch(const Heap::String &aFirst, const Heap::String &aSecond);