Home
last modified time | relevance | path

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

/openthread-latest/include/openthread/
Dmessage.h97 bool mLinkSecurity : 1; ///< Indicates whether or not link security is enabled. member
Dhistory_tracker.h147 bool mLinkSecurity : 1; ///< Indicates whether msg used link security. member
/openthread-latest/src/core/common/
Dmessage.hpp192 bool mLinkSecurity : 1; // Whether link security is enabled. member
1287 bool IsLinkSecurityEnabled(void) const { return GetMetadata().mLinkSecurity; } in IsLinkSecurityEnabled()
1294 void SetLinkSecurityEnabled(bool aEnabled) { GetMetadata().mLinkSecurity = aEnabled; } in SetLinkSecurityEnabled()
Dmessage.cpp811 aLinkInfo.mLinkSecurity = IsLinkSecurityEnabled(); in GetLinkInfo()
833 SetLinkSecurityEnabled(aLinkInfo.mLinkSecurity); in UpdateLinkInfoFrom()
/openthread-latest/src/cli/
Dcli_history.cpp1186 aInfo.mPayloadLength, aInfo.mChecksum, aInfo.mLinkSecurity ? "yes" : "no", in OutputRxTxEntryListFormat()
1214 aInfo.mPayloadLength, aInfo.mChecksum, aInfo.mLinkSecurity ? "yes" : "no", in OutputRxTxEntryTableFormat()
/openthread-latest/src/core/thread/
Dmesh_forwarder.hpp112 bool IsLinkSecurityEnabled(void) const { return mLinkSecurity; } in IsLinkSecurityEnabled()
Dmesh_forwarder.cpp72mLinkSecurity = (keyIdMode == Mac::Frame::kKeyIdMode0) || (keyIdMode == Mac::Frame::kKeyIdMode1); in SetFrom()
76 mLinkSecurity = false; in SetFrom()
/openthread-latest/src/core/utils/
Dhistory_tracker.cpp129 entry->mLinkSecurity = aMessage.IsLinkSecurityEnabled(); in RecordMessage()