Lines Matching refs:prop
401 const struct tee_props *prop = NULL; in syscall_get_property() local
406 prop = get_prop_struct(prop_set, index); in syscall_get_property()
407 if (!prop) in syscall_get_property()
412 res = copy_to_user(prop_type, &prop->prop_type, in syscall_get_property()
424 if (prop->get_prop_func) { in syscall_get_property()
426 res = prop->get_prop_func(sess, buf, &klen_size); in syscall_get_property()
430 if (klen < prop->len) in syscall_get_property()
433 res = copy_to_user(buf, prop->data, prop->len); in syscall_get_property()
434 res2 = copy_to_user(blen, &prop->len, sizeof(*blen)); in syscall_get_property()
448 elen = strlen(prop->name) + 1; in syscall_get_property()
453 res = copy_to_user(name, prop->name, elen); in syscall_get_property()