Lines Matching refs:prop
471 const struct tee_props *prop = NULL; in syscall_get_property() local
476 prop = get_prop_struct(prop_set, index); in syscall_get_property()
477 if (!prop) in syscall_get_property()
482 res = copy_to_user(prop_type, &prop->prop_type, in syscall_get_property()
494 if (prop->get_prop_func) { in syscall_get_property()
496 res = prop->get_prop_func(sess, buf, &klen_size); in syscall_get_property()
500 if (klen < prop->len) in syscall_get_property()
503 res = copy_to_user(buf, prop->data, prop->len); in syscall_get_property()
504 res2 = copy_to_user(blen, &prop->len, sizeof(*blen)); in syscall_get_property()
518 elen = strlen(prop->name) + 1; in syscall_get_property()
523 res = copy_to_user(name, prop->name, elen); in syscall_get_property()