Lines Matching refs:status
152 psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
172 status = mbedtls_psa_ffdh_set_prime_generator(key_len, &P, &G);
174 if (status != PSA_SUCCESS) {
191 if (status == PSA_SUCCESS && ret != 0) {
192 status = mbedtls_to_psa_error(ret);
195 return status;
207 psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
211 status = mbedtls_psa_ffdh_set_prime_generator(key_buffer_size, &P, NULL);
213 if (status != PSA_SUCCESS) {
228 if (status == PSA_SUCCESS && ret != 0) {
232 return status;
268 psa_status_t status = PSA_ERROR_CORRUPTION_DETECTED;
285 status = mbedtls_psa_ffdh_set_prime_generator(
288 if (status != PSA_SUCCESS) {
313 if (status == PSA_SUCCESS && ret != 0) {
314 status = mbedtls_to_psa_error(ret);
317 return status;