Home
last modified time | relevance | path

Searched refs:aServiceName (Results 1 – 15 of 15) sorted by relevance

/openthread-latest/src/core/api/
Ddns_api.cpp144 const char *aServiceName, in otDnsClientBrowse() argument
149 AssertPointerIsNotNull(aServiceName); in otDnsClientBrowse()
151 …return AsCoreType(aInstance).Get<Dns::Client>().Browse(aServiceName, aCallback, aContext, AsCoreTy… in otDnsClientBrowse()
197 const char *aServiceName, in otDnsClientResolveService() argument
203 AssertPointerIsNotNull(aServiceName); in otDnsClientResolveService()
205 …return AsCoreType(aInstance).Get<Dns::Client>().ResolveService(aInstanceLabel, aServiceName, aCall… in otDnsClientResolveService()
211 const char *aServiceName, in otDnsClientResolveServiceAndHostAddress() argument
217 AssertPointerIsNotNull(aServiceName); in otDnsClientResolveServiceAndHostAddress()
220 aInstanceLabel, aServiceName, aCallback, aContext, AsCoreTypePtr(aConfig)); in otDnsClientResolveServiceAndHostAddress()
Dsrp_server_api.cpp184 … otSrpServerServiceMatchesServiceName(const otSrpServerService *aService, const char *aServiceName) in otSrpServerServiceMatchesServiceName() argument
186 return AsCoreType(aService).MatchesServiceName(aServiceName); in otSrpServerServiceMatchesServiceName()
/openthread-latest/include/openthread/
Ddns_client.h365 const char *aServiceName,
527 const char *aServiceName,
563 const char *aServiceName,
Dtcat.h179 const char *aServiceName,
Dsrp_server.h527 …otSrpServerServiceMatchesServiceName(const otSrpServerService *aService, const char *aServiceName);
/openthread-latest/src/core/net/
Ddns_client.hpp672 Error Browse(const char *aServiceName,
695 const char *aServiceName,
720 const char *aServiceName,
812 const char *aServiceName,
Ddns_client.cpp890 Error Client::Browse(const char *aServiceName, BrowseCallback aCallback, void *aContext, const Quer… in Browse() argument
900 return StartQuery(info, nullptr, aServiceName); in Browse()
904 const char *aServiceName, in ResolveService() argument
909 return Resolve(aInstanceLabel, aServiceName, aCallback, aContext, aConfig, false); in ResolveService()
913 const char *aServiceName, in ResolveServiceAndHostAddress() argument
918 return Resolve(aInstanceLabel, aServiceName, aCallback, aContext, aConfig, true); in ResolveServiceAndHostAddress()
922 const char *aServiceName, in Resolve() argument
967 error = StartQuery(info, aInstanceLabel, aServiceName, secondQueryType); in Resolve()
Ddnssd_server.cpp1652 void Server::DiscoveryProxy::StartOrStopBrowser(Command aCommand, Name::Buffer &aServiceName) in StartOrStopBrowser() argument
1664 IgnoreError(StripDomainName(aServiceName)); in StartOrStopBrowser()
1669 ptr = AsNonConst(StringFind(aServiceName, kFullSubLabel, kStringCaseInsensitiveMatch)); in StartOrStopBrowser()
1677 browser.mSubTypeLabel = aServiceName; in StartOrStopBrowser()
1681 browser.mServiceType = aServiceName; in StartOrStopBrowser()
Dmdns.hpp1731 bool Matches(const ServiceName &aServiceName) const;
1742 Error Init(Instance &aInstance, const ServiceName &aServiceName);
1769 bool Matches(const ServiceName &aServiceName) const;
1780 Error Init(Instance &aInstance, const ServiceName &aServiceName);
Dmdns.cpp5603 Error Core::SrvCache::Init(Instance &aInstance, const ServiceName &aServiceName) in Init() argument
5605 return Init(aInstance, aServiceName.mServiceInstance, aServiceName.mServiceType); in Init()
5615 bool Core::SrvCache::Matches(const ServiceName &aServiceName) const in Matches()
5617 return ServiceCache::Matches(aServiceName.mServiceInstance, aServiceName.mServiceType); in Matches()
5801 Error Core::TxtCache::Init(Instance &aInstance, const ServiceName &aServiceName) in Init() argument
5803 return Init(aInstance, aServiceName.mServiceInstance, aServiceName.mServiceType); in Init()
5813 bool Core::TxtCache::Matches(const ServiceName &aServiceName) const in Matches()
5815 return ServiceCache::Matches(aServiceName.mServiceInstance, aServiceName.mServiceType); in Matches()
Ddnssd_server.hpp495 void StartOrStopBrowser(Command aCommand, Name::Buffer &aServiceName);
Dsrp_server.hpp372 bool MatchesServiceName(const char *aServiceName) const;
Dsrp_server.cpp1898 bool Server::Service::MatchesServiceName(const char *aServiceName) const in MatchesServiceName()
1900 return StringMatch(mServiceName.AsCString(), aServiceName, kStringCaseInsensitiveMatch); in MatchesServiceName()
/openthread-latest/src/cli/
Dcli_tcat.cpp117 const char *aServiceName, in HandleBleSecureReceive() argument
122 OT_UNUSED_VARIABLE(aServiceName); in HandleBleSecureReceive()
/openthread-latest/tests/unit/
Dtest_mdns.cpp1207 static void SendSrvResponse(const char *aServiceName, in SendSrvResponse() argument
1237 SuccessOrQuit(Name::AppendName(aServiceName, *message)); in SendSrvResponse()
1252 …Log("Sending SRV response for %s, host:%s, port:%u, ttl:%lu", aServiceName, aHostName, aPort, ToUl… in SendSrvResponse()
1257 static void SendTxtResponse(const char *aServiceName, in SendTxtResponse() argument
1285 SuccessOrQuit(Name::AppendName(aServiceName, *message)); in SendTxtResponse()
1297 … Log("Sending TXT response for %s, len:%u, ttl:%lu", aServiceName, aTxtDataLength, ToUlong(aTtl)); in SendTxtResponse()