Home
last modified time | relevance | path

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

/optee_os/core/mm/
H A Dfobj.c424 static void rop_init(struct fobj_rop *rop, const struct fobj_ops *ops, in rop_init() argument
427 rop->hashes = hashes; in rop_init()
428 rop->store = store; in rop_init()
429 fobj_init(&rop->fobj, ops, num_pages); in rop_init()
435 struct fobj_rop *rop = NULL; in fobj_ro_paged_alloc() local
439 rop = calloc(1, sizeof(*rop)); in fobj_ro_paged_alloc()
440 if (!rop) in fobj_ro_paged_alloc()
443 rop_init(rop, &ops_ro_paged, num_pages, hashes, store); in fobj_ro_paged_alloc()
445 return &rop->fobj; in fobj_ro_paged_alloc()
455 static void rop_uninit(struct fobj_rop *rop) in rop_uninit() argument
[all …]