Home
last modified time | relevance | path

Searched refs:otMacKey (Results 1 – 9 of 9) sorted by relevance

/openthread-latest/include/openthread/
Dlink_raw.h348 const otMacKey *aPrevKey,
349 const otMacKey *aCurrKey,
350 const otMacKey *aNextKey);
/openthread-latest/src/lib/spinel/
Dradio_spinel.hpp1206 const otMacKey &aPrevKey,
1207 const otMacKey &aCurrKey,
1208 const otMacKey &NextKey);
1210 static otError ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey);
1279 otMacKey mPrevKey;
1280 otMacKey mCurrKey;
1281 otMacKey mNextKey;
Dlogger.cpp560 otMacKey prevKey; in LogSpinelFrame()
561 unsigned int prevKeyLen = sizeof(otMacKey); in LogSpinelFrame()
562 otMacKey currKey; in LogSpinelFrame()
563 unsigned int currKeyLen = sizeof(otMacKey); in LogSpinelFrame()
564 otMacKey nextKey; in LogSpinelFrame()
565 unsigned int nextKeyLen = sizeof(otMacKey); in LogSpinelFrame()
Dradio_spinel.cpp863 otError RadioSpinel::ReadMacKey(const otMacKeyMaterial &aKeyMaterial, otMacKey &aKey) in ReadMacKey()
869 VerifyOrExit(keySize == sizeof(otMacKey), error = OT_ERROR_FAILED); in ReadMacKey()
882 otMacKey prevKey; in SetMacKey()
883 otMacKey currKey; in SetMacKey()
884 otMacKey nextKey; in SetMacKey()
911 const otMacKey &aPrevKey, in SetMacKey()
912 const otMacKey &aCurrKey, in SetMacKey()
913 const otMacKey &aNextKey) in SetMacKey()
2188 … mKeyIdMode, mKeyId, mPrevKey.m8, sizeof(otMacKey), mCurrKey.m8, sizeof(otMacKey), mNextKey.m8, in RestoreProperties()
2189 sizeof(otMacKey))); in RestoreProperties()
/openthread-latest/include/openthread/platform/
Dradio.h192 struct otMacKey struct
200 typedef struct otMacKey otMacKey; argument
217 otMacKey mKey; ///< Key stored as literal.
/openthread-latest/src/ncp/
Dncp_base_radio.cpp556 VerifyOrExit(keySize == sizeof(otMacKey), error = OT_ERROR_INVALID_ARGS); in HandlePropertySet()
559 VerifyOrExit(keySize == sizeof(otMacKey), error = OT_ERROR_INVALID_ARGS); in HandlePropertySet()
562 VerifyOrExit(keySize == sizeof(otMacKey), error = OT_ERROR_INVALID_ARGS); in HandlePropertySet()
565 otLinkRawSetMacKey(mInstance, keyIdMode, keyId, reinterpret_cast<const otMacKey *>(prevKey), in HandlePropertySet()
566 … reinterpret_cast<const otMacKey *>(currKey), reinterpret_cast<const otMacKey *>(nextKey)); in HandlePropertySet()
/openthread-latest/src/core/api/
Dlink_raw_api.cpp205 const otMacKey *aPrevKey, in otLinkRawSetMacKey()
206 const otMacKey *aCurrKey, in otLinkRawSetMacKey()
207 const otMacKey *aNextKey) in otLinkRawSetMacKey()
/openthread-latest/src/core/mac/
Dmac_types.hpp480 class Key : public otMacKey, public Equatable<Key>, public Clearable<Key>
944 DefineCoreType(otMacKey, Mac::Key);
Dmac.cpp107 static const otMacKey sMode2Key = { in Mac()