Home
last modified time | relevance | path

Searched refs:ChannelManager (Results 1 – 4 of 4) sorted by relevance

/openthread-latest/src/core/api/
Dchannel_manager_api.cpp46 AsCoreType(aInstance).Get<Utils::ChannelManager>().RequestNetworkChannelChange(aChannel); in otChannelManagerRequestChannelChange()
52 return AsCoreType(aInstance).Get<Utils::ChannelManager>().GetRequestedChannel(); in otChannelManagerGetRequestedChannel()
58 return AsCoreType(aInstance).Get<Utils::ChannelManager>().GetDelay(); in otChannelManagerGetDelay()
63 return AsCoreType(aInstance).Get<Utils::ChannelManager>().SetDelay(aDelay); in otChannelManagerSetDelay()
69 …return AsCoreType(aInstance).Get<Utils::ChannelManager>().RequestNetworkChannelSelect(aSkipQuality… in otChannelManagerRequestChannelSelect()
75 …AsCoreType(aInstance).Get<Utils::ChannelManager>().SetAutoNetworkChannelSelectionEnabled(aEnabled); in otChannelManagerSetAutoChannelSelectionEnabled()
80 … return AsCoreType(aInstance).Get<Utils::ChannelManager>().GetAutoNetworkChannelSelectionEnabled(); in otChannelManagerGetAutoChannelSelectionEnabled()
88 …return AsCoreType(aInstance).Get<Utils::ChannelManager>().RequestCslChannelSelect(aSkipQualityChec… in otChannelManagerRequestCslChannelSelect()
94 AsCoreType(aInstance).Get<Utils::ChannelManager>().SetAutoCslChannelSelectionEnabled(aEnabled); in otChannelManagerSetAutoCslChannelSelectionEnabled()
99 return AsCoreType(aInstance).Get<Utils::ChannelManager>().GetAutoCslChannelSelectionEnabled(); in otChannelManagerGetAutoCslChannelSelectionEnabled()
[all …]
/openthread-latest/src/core/utils/
Dchannel_manager.cpp46 ChannelManager::ChannelManager(Instance &aInstance) in ChannelManager() function in ot::Utils::ChannelManager
68 void ChannelManager::RequestChannelChange(uint8_t aChannel) in RequestChannelChange()
85 void ChannelManager::RequestNetworkChannelChange(uint8_t aChannel) in RequestNetworkChannelChange()
113 void ChannelManager::ChangeCslChannel(uint8_t aChannel) in ChangeCslChannel()
140 Error ChannelManager::SetDelay(uint16_t aDelay) in SetDelay()
151 void ChannelManager::StartDatasetUpdate(void) in StartDatasetUpdate()
183 void ChannelManager::HandleDatasetUpdateDone(otError aError, void *aContext) in HandleDatasetUpdateDone()
185 static_cast<ChannelManager *>(aContext)->HandleDatasetUpdateDone(aError); in HandleDatasetUpdateDone()
188 void ChannelManager::HandleDatasetUpdateDone(Error aError) in HandleDatasetUpdateDone()
205 void ChannelManager::HandleTimer(void) in HandleTimer()
[all …]
Dchannel_manager.hpp71 class ChannelManager : public InstanceLocator, private NonCopyable class
86 explicit ChannelManager(Instance &aInstance);
344 using ManagerTimer = TimerMilliIn<ChannelManager, &ChannelManager::HandleTimer>;
/openthread-latest/src/core/instance/
Dinstance.hpp682 Utils::ChannelManager mChannelManager;
998 template <> inline Utils::ChannelManager &Instance::Get(void) { return mChannelManager; } in Get()