/openthread-latest/src/core/api/ |
D | dns_api.cpp | 144 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()
|
D | srp_server_api.cpp | 184 … otSrpServerServiceMatchesServiceName(const otSrpServerService *aService, const char *aServiceName) in otSrpServerServiceMatchesServiceName() argument 186 return AsCoreType(aService).MatchesServiceName(aServiceName); in otSrpServerServiceMatchesServiceName()
|
/openthread-latest/include/openthread/ |
D | dns_client.h | 365 const char *aServiceName, 527 const char *aServiceName, 563 const char *aServiceName,
|
D | tcat.h | 179 const char *aServiceName,
|
D | srp_server.h | 527 …otSrpServerServiceMatchesServiceName(const otSrpServerService *aService, const char *aServiceName);
|
/openthread-latest/src/core/net/ |
D | dns_client.hpp | 672 Error Browse(const char *aServiceName, 695 const char *aServiceName, 720 const char *aServiceName, 812 const char *aServiceName,
|
D | dns_client.cpp | 890 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()
|
D | dnssd_server.cpp | 1652 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()
|
D | mdns.hpp | 1731 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);
|
D | mdns.cpp | 5603 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()
|
D | dnssd_server.hpp | 495 void StartOrStopBrowser(Command aCommand, Name::Buffer &aServiceName);
|
D | srp_server.hpp | 372 bool MatchesServiceName(const char *aServiceName) const;
|
D | srp_server.cpp | 1898 bool Server::Service::MatchesServiceName(const char *aServiceName) const in MatchesServiceName() 1900 return StringMatch(mServiceName.AsCString(), aServiceName, kStringCaseInsensitiveMatch); in MatchesServiceName()
|
/openthread-latest/src/cli/ |
D | cli_tcat.cpp | 117 const char *aServiceName, in HandleBleSecureReceive() argument 122 OT_UNUSED_VARIABLE(aServiceName); in HandleBleSecureReceive()
|
/openthread-latest/tests/unit/ |
D | test_mdns.cpp | 1207 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()
|