Home
last modified time | relevance | path

Searched refs:service_fn_t (Results 1 – 4 of 4) sorted by relevance

/trusted-firmware-m-3.6.0/secure_fw/partitions/lib/runtime/
Dsfn_common_thread.c24 service_fn_t *p_sfn_table; in common_sfn_thread()
29 p_sfn_table = (service_fn_t *)meta->sfn_table; in common_sfn_thread()
49 psa_reply(msg.handle, ((service_fn_t)p_sfn_table[i])(&msg)); in common_sfn_thread()
/trusted-firmware-m-3.6.0/secure_fw/spm/include/interface/
Druntime_defs.h23 typedef psa_status_t (*service_fn_t)(psa_msg_t *msg); typedef
84 service_fn_t sfn_table[];/* Secure FuNctions Table */
/trusted-firmware-m-3.6.0/secure_fw/spm/core/
Dbackend_ipc.c123 service_fn_t *p_sfn_table; in prv_process_metadata()
135 allocate_size += sizeof(service_fn_t) * p_pt_ldi->nservices; in prv_process_metadata()
159 p_sfn_table[i] = (service_fn_t)p_srv_ldi[i].sfn; in prv_process_metadata()
Dbackend_sfn.c66 status = ((service_fn_t)p_connection->service->p_ldinf->sfn)(&p_connection->msg); in backend_messaging()