Home
last modified time | relevance | path

Searched refs:aKeyId (Results 1 – 2 of 2) sorted by relevance

/Zephyr-latest/modules/openthread/platform/
Dradio.c1265 void otPlatRadioSetMacKey(otInstance *aInstance, uint8_t aKeyIdMode, uint8_t aKeyId, in otPlatRadioSetMacKey() argument
1321 uint8_t prev_key_id = aKeyId == 1 ? 0x80 : aKeyId - 1; in otPlatRadioSetMacKey()
1322 uint8_t next_key_id = aKeyId == 0x80 ? 1 : aKeyId + 1; in otPlatRadioSetMacKey()
1327 keys[1].key_id = &aKeyId; in otPlatRadioSetMacKey()
1334 __ASSERT_NO_MSG((key_id_mode == 0) && (aKeyId == 0)); in otPlatRadioSetMacKey()
1338 .mac_keys = aKeyId == 0 ? clear_keys : keys, in otPlatRadioSetMacKey()
Dradio_spinel.cpp432 void otPlatRadioSetMacKey(otInstance *aInstance, uint8_t aKeyIdMode, uint8_t aKeyId, in otPlatRadioSetMacKey() argument
436 SuccessOrDie(psRadioSpinel->SetMacKey(aKeyIdMode, aKeyId, aPrevKey, aCurrKey, aNextKey)); in otPlatRadioSetMacKey()