Home
last modified time | relevance | path

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

/optee_os/core/arch/arm/kernel/
H A Dvirtualization.c70 void **data_array; member
273 if (!free_only && prtn->data_array[n] && gsd_array[n].destroy) in destroy_gsd()
274 gsd_array[n].destroy(prtn->data_array[n]); in destroy_gsd()
275 nex_free(prtn->data_array[n]); in destroy_gsd()
277 nex_free(prtn->data_array); in destroy_gsd()
278 prtn->data_array = NULL; in destroy_gsd()
288 prtn->data_array = nex_calloc(gsd_count, sizeof(void *)); in alloc_gsd()
289 if (!prtn->data_array) in alloc_gsd()
293 prtn->data_array[n] = nex_calloc(1, gsd_array[n].size); in alloc_gsd()
294 if (!prtn->data_array[n]) { in alloc_gsd()
[all …]