Lines Matching defs:status
18 psa_status_t status;
23 status = rss_comms_init(PLAT_RSS_AP_SND_MHU_BASE, PLAT_RSS_AP_RCV_MHU_BASE);
24 if (status != PSA_SUCCESS) {
25 printf("Failed to initialize RSS communication channel - psa_status = %d\n", status);
30 status = rss_platform_nv_counter_read(id, sizeof(old_val), (uint8_t *)&old_val);
31 if (status != PSA_SUCCESS) {
33 id, status);
37 status = rss_platform_nv_counter_increment(id);
38 if (status != PSA_SUCCESS) {
40 id, status);
44 status = rss_platform_nv_counter_read(id, sizeof(new_val), (uint8_t *)&new_val);
45 if (status != PSA_SUCCESS) {
47 id, status);