Home
last modified time | relevance | path

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

/openthread-latest/src/core/net/
Dmdns.cpp190 return IsKeyForService(aKey) ? Register<ServiceEntry>(aKey, aRequestId, aCallback) in RegisterKey()
196 return IsKeyForService(aKey) ? Unregister<ServiceEntry>(aKey) : Unregister<HostEntry>(aKey); in UnregisterKey()
1488 bool Core::HostEntry::Matches(const Key &aKey) const { return !IsKeyForService(aKey) && NameMatch(m… in Matches()
1911 return IsKeyForService(aKey) && NameMatch(mServiceInstance, aKey.mName) && in Matches()
Dmdns.hpp1963 static bool IsKeyForService(const Key &aKey) { return aKey.mServiceType != nullptr; } in IsKeyForService() function in ot::Dns::Multicast::Core