Searched refs:otMacKey (Results 1 – 9 of 9) sorted by relevance
/openthread-latest/include/openthread/ |
D | link_raw.h | 348 const otMacKey *aPrevKey, 349 const otMacKey *aCurrKey, 350 const otMacKey *aNextKey);
|
/openthread-latest/src/lib/spinel/ |
D | radio_spinel.hpp | 1206 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;
|
D | logger.cpp | 560 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()
|
D | radio_spinel.cpp | 863 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/ |
D | radio.h | 192 struct otMacKey struct 200 typedef struct otMacKey otMacKey; argument 217 otMacKey mKey; ///< Key stored as literal.
|
/openthread-latest/src/ncp/ |
D | ncp_base_radio.cpp | 556 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/ |
D | link_raw_api.cpp | 205 const otMacKey *aPrevKey, in otLinkRawSetMacKey() 206 const otMacKey *aCurrKey, in otLinkRawSetMacKey() 207 const otMacKey *aNextKey) in otLinkRawSetMacKey()
|
/openthread-latest/src/core/mac/ |
D | mac_types.hpp | 480 class Key : public otMacKey, public Equatable<Key>, public Clearable<Key> 944 DefineCoreType(otMacKey, Mac::Key);
|
D | mac.cpp | 107 static const otMacKey sMode2Key = { in Mac()
|