Lines Matching defs:status
346 psa_status_t status;
352 * in case the caller doesn't check the return status properly. */
361 status = PSA_ERROR_BUFFER_TOO_SMALL;
424 status = mbedtls_to_psa_error(ret);
427 if (status == PSA_SUCCESS) {
430 return status;
442 psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
446 status = mbedtls_psa_hash_setup(&operation, alg);
447 if (status != PSA_SUCCESS) {
450 status = mbedtls_psa_hash_update(&operation, input, input_length);
451 if (status != PSA_SUCCESS) {
454 status = mbedtls_psa_hash_finish(&operation, hash, hash_size, hash_length);
455 if (status != PSA_SUCCESS) {
461 if (status == PSA_SUCCESS) {
464 return status;