Lines Matching refs:error
555 otError error; in openthread_handle_frame_to_send() local
588 error = is_ip6 ? otIp6Send(instance, message) : openthread_nat64_send(instance, message); in openthread_handle_frame_to_send()
590 if (error != OT_ERROR_NONE) { in openthread_handle_frame_to_send()
592 is_ip6 ? "otIp6Send" : "openthread_nat64_send", error); in openthread_handle_frame_to_send()
900 otError error = OT_ERROR_INVALID_STATE; in otPlatRadioTransmit() local
915 error = OT_ERROR_NONE; in otPlatRadioTransmit()
919 return error; in otPlatRadioTransmit()
939 int error = 0; in otPlatRadioGetRssi() local
957 error = radio_api->ed_scan(radio_dev, detection_time, in otPlatRadioGetRssi()
960 if (error == 0) { in otPlatRadioGetRssi()
1288 otError error; in otPlatRadioSetMacKey() local
1290 error = otPlatCryptoExportKey(aPrevKey->mKeyMaterial.mKeyRef, in otPlatRadioSetMacKey()
1293 __ASSERT_NO_MSG(error == OT_ERROR_NONE); in otPlatRadioSetMacKey()
1294 error = otPlatCryptoExportKey(aCurrKey->mKeyMaterial.mKeyRef, in otPlatRadioSetMacKey()
1297 __ASSERT_NO_MSG(error == OT_ERROR_NONE); in otPlatRadioSetMacKey()
1298 error = otPlatCryptoExportKey(aNextKey->mKeyMaterial.mKeyRef, in otPlatRadioSetMacKey()
1301 __ASSERT_NO_MSG(error == OT_ERROR_NONE); in otPlatRadioSetMacKey()