Home
last modified time | relevance | path

Searched refs:AdvertisingProxy (Results 1 – 8 of 8) sorted by relevance

/openthread-latest/src/core/net/
Dsrp_advertising_proxy.cpp48 AdvertisingProxy::AdvertisingProxy(Instance &aInstance) in AdvertisingProxy() function in ot::Srp::AdvertisingProxy
59 void AdvertisingProxy::Start(void) in Start()
79 void AdvertisingProxy::Stop(void) in Stop()
126 void AdvertisingProxy::UpdateState(void) in UpdateState()
150 AdvertisingProxy::RequestId AdvertisingProxy::AllocateNextRequestId(void) in AllocateNextRequestId()
163 template <> void AdvertisingProxy::UpdateAdvIdRangeOn(Host &aHost) in UpdateAdvIdRangeOn()
200 template <> void AdvertisingProxy::UpdateAdvIdRangeOn(Service &aService) in UpdateAdvIdRangeOn()
208 void AdvertisingProxy::AdvertiseRemovalOf(Host &aHost) in AdvertiseRemovalOf()
314 void AdvertisingProxy::AdvertiseRemovalOf(Service &aService) in AdvertiseRemovalOf()
364 void AdvertisingProxy::Advertise(Host &aHost, const Server::MessageMetadata &aMetadata) in Advertise()
[all …]
Dsrp_advertising_proxy.hpp69 class AdvertisingProxy : public InstanceLocator, private NonCopyable class
96 explicit AdvertisingProxy(Instance &aInstance);
291 using AdvTimer = TimerMilliIn<AdvertisingProxy, &AdvertisingProxy::HandleTimer>;
292 using AdvTasklet = TaskletIn<AdvertisingProxy, &AdvertisingProxy::HandleTasklet>;
Dsrp_server.hpp105 class AdvertisingProxy;
117 friend class AdvertisingProxy;
190 friend class AdvertisingProxy;
439 friend class AdvertisingProxy;
Ddnssd.cpp479 Get<Srp::AdvertisingProxy>().HandleDnssdPlatformStateChange(); in HandleStateChange()
Dsrp_server.cpp335 Get<AdvertisingProxy>().AdvertiseRemovalOf(*aHost); in RemoveHost()
630 Get<AdvertisingProxy>().HandleServerStateChange(); in Start()
751 Get<AdvertisingProxy>().HandleServerStateChange(); in Stop()
1449 Get<AdvertisingProxy>().Advertise(aHost, aMetadata); in InformUpdateHandlerOrCommit()
2144 Get<AdvertisingProxy>().AdvertiseRemovalOf(*aService); in RemoveService()
/openthread-latest/tests/unit/
Dtest_srp_adv_proxy.cpp778 Srp::AdvertisingProxy *advProxy; in TestSrpAdvProxy()
791 advProxy = &sInstance->Get<Srp::AdvertisingProxy>(); in TestSrpAdvProxy()
1150 Srp::AdvertisingProxy *advProxy; in TestSrpAdvProxyDnssdStateChange()
1163 advProxy = &sInstance->Get<Srp::AdvertisingProxy>(); in TestSrpAdvProxyDnssdStateChange()
1454 Srp::AdvertisingProxy *advProxy; in TestSrpAdvProxyDelayedCallback()
1468 advProxy = &sInstance->Get<Srp::AdvertisingProxy>(); in TestSrpAdvProxyDelayedCallback()
1738 Srp::AdvertisingProxy *advProxy; in TestSrpAdvProxyReplacedEntries()
1753 advProxy = &sInstance->Get<Srp::AdvertisingProxy>(); in TestSrpAdvProxyReplacedEntries()
2231 Srp::AdvertisingProxy *advProxy; in TestSrpAdvProxyHostWithOffMeshRoutableAddress()
2245 advProxy = &sInstance->Get<Srp::AdvertisingProxy>(); in TestSrpAdvProxyHostWithOffMeshRoutableAddress()
[all …]
/openthread-latest/src/core/border_router/
Dinfra_if.cpp160 Get<Srp::AdvertisingProxy>().HandleInfraIfStateChanged(); in HandleStateChanged()
/openthread-latest/src/core/instance/
Dinstance.hpp631 Srp::AdvertisingProxy mSrpAdvertisingProxy;
1090 template <> inline Srp::AdvertisingProxy &Instance::Get(void) { return mSrpAdvertisingProxy; } in Get()