Home
last modified time | relevance | path

Searched refs:mMode (Results 1 – 19 of 19) sorted by relevance

/openthread-latest/src/core/common/
Dtrickle_timer.cpp52 , mMode(kModeTrickle) in TrickleTimer()
64 if (mMode == kModePlainTimer) in GetStartTimeOfCurrentInterval()
124 if (mMode == kModePlainTimer) in SetIntervalMax()
216 mMode = aMode; in Start()
234 VerifyOrExit(mMode == kModeTrickle); in IndicateInconsistent()
252 switch (mMode) in StartNewInterval()
275 switch (mMode) in HandleTimer()
Dtrickle_timer.hpp104 Mode GetMode(void) const { return mMode; } in GetMode()
204 Mode mMode; // Trickle timer operation mode. member in ot::TrickleTimer
Dsettings.hpp438 uint8_t GetMode(void) const { return mMode; } in GetMode()
445 void SetMode(uint8_t aMode) { mMode = aMode; } in SetMode()
467 uint8_t mMode; ///< The MLE device mode member in ot::SettingsBase::ChildInfo
/openthread-latest/src/core/thread/
Dmle_types.cpp57 mMode = kModeReserved; in Set()
58 mMode |= aModeConfig.mRxOnWhenIdle ? kModeRxOnWhenIdle : 0; in Set()
59 mMode |= aModeConfig.mDeviceType ? kModeFullThreadDevice : 0; in Set()
60 mMode |= aModeConfig.mNetworkData ? kModeFullNetworkData : 0; in Set()
Dmle_types.hpp226 uint8_t Get(void) const { return mMode; } in Get()
233 void Set(uint8_t aMode) { mMode = aMode | kModeReserved; } in Set()
255 bool IsRxOnWhenIdle(void) const { return (mMode & kModeRxOnWhenIdle) != 0; } in IsRxOnWhenIdle()
263 bool IsFullThreadDevice(void) const { return (mMode & kModeFullThreadDevice) != 0; } in IsFullThreadDevice()
272 return (mMode & kModeFullNetworkData) ? NetworkData::kFullSet : NetworkData::kStableSubset; in GetNetworkDataType()
283 …return (mMode & (kModeFullThreadDevice | kModeRxOnWhenIdle)) != (kModeFullThreadDevice | kModeRxOn… in IsMinimalEndDevice()
305 uint8_t mMode; member in ot::Mle::DeviceMode
Dneighbor.hpp307 Mle::DeviceMode GetDeviceMode(void) const { return Mle::DeviceMode(mMode); } in GetDeviceMode()
314 void SetDeviceMode(Mle::DeviceMode aMode) { mMode = aMode.Get(); } in SetDeviceMode()
745 uint8_t mMode : 4; member in ot::Neighbor
Dnetwork_diagnostic_tlvs.hpp550 Mle::DeviceMode GetMode(void) const { return Mle::DeviceMode(mMode); } in GetMode()
557 void SetMode(Mle::DeviceMode aMode) { mMode = aMode.Get(); } in SetMode()
577 uint8_t mMode; member in ot::NetworkDiagnostic::ChildTableEntry
Dnetwork_diagnostic.cpp1064 Mle::DeviceMode(mode).Get(aTlvInfo.mData.mMode); in GetNextDiagTlv()
1192 entry.GetMode().Get(childInfo->mMode); in GetNextDiagTlv()
/openthread-latest/src/core/mac/
Dmac_filter.hpp100 Mode GetMode(void) const { return mMode; } in GetMode()
107 void SetMode(Mode aMode) { mMode = aMode; } in SetMode()
242 Mode mMode; member in ot::Mac::Filter
Dmac_filter.cpp44 : mMode(kModeRssInOnly) in Filter()
228 switch (mMode) in Apply()
/openthread-latest/src/posix/platform/
Ddaemon.cpp211 mMode = umask(0); in createListenSocketOrDie()
218 umask(mMode); in createListenSocketOrDie()
224 mode_t mMode = 0; in createListenSocketOrDie() member in ot::Posix::Daemon::createListenSocketOrDie::AllowAllGuard
/openthread-latest/include/openthread/
Dnetdiag.h179 otLinkModeConfig mMode; ///< Link mode. member
194 otLinkModeConfig mMode; member
Dmesh_diag.h141 otLinkModeConfig mMode; ///< Device mode. member
Dhistory_tracker.h80 otLinkModeConfig mMode; ///< Device Mode. member
/openthread-latest/src/cli/
Dcli_mesh_diag.cpp399 LinkModeToString(childInfo.mMode, linkModeString)); in HandleMeshDiagDiscoverDone()
Dcli_history.cpp677 …Interpreter::LinkModeToString(info->mMode, linkModeString), info->mRloc16, ToUlong(info->mPartitio… in Process()
Dcli.cpp7579 OutputMode(kIndentSize, diagTlv.mData.mMode); in HandleDiagnosticGetResponse()
7796 OutputMode(aIndentSize + kIndentSize, aChildEntry.mMode); in OutputChildTableEntry()
/openthread-latest/src/core/utils/
Dhistory_tracker.cpp71 mode.Get(entry->mMode); in RecordNetworkInfo()
Dmesh_diag.cpp573 entry.GetMode().Get(aChildInfo.mMode); in GetNextChildInfo()