Lines Matching refs:TEE_Result

14 TEE_Result syscall_cryp_obj_get_info(unsigned long obj,
16 TEE_Result syscall_cryp_obj_restrict_usage(unsigned long obj,
18 TEE_Result syscall_cryp_obj_get_attr(unsigned long obj, unsigned long attr_id,
21 TEE_Result syscall_cryp_obj_alloc(unsigned long obj_type,
23 TEE_Result syscall_cryp_obj_close(unsigned long obj);
24 TEE_Result syscall_cryp_obj_reset(unsigned long obj);
25 TEE_Result syscall_cryp_obj_populate(unsigned long obj,
27 TEE_Result syscall_cryp_obj_copy(unsigned long dst_obj,
29 TEE_Result syscall_obj_generate_key(unsigned long obj, unsigned long key_size,
33 TEE_Result syscall_cryp_state_alloc(unsigned long algo, unsigned long op_mode,
36 TEE_Result syscall_cryp_state_copy(unsigned long dst, unsigned long src);
37 TEE_Result syscall_cryp_state_free(unsigned long state);
41 TEE_Result syscall_hash_init(unsigned long state, const void *iv,
43 TEE_Result syscall_hash_update(unsigned long state, const void *chunk,
45 TEE_Result syscall_hash_final(unsigned long state, const void *chunk,
48 TEE_Result syscall_cipher_init(unsigned long state, const void *iv,
50 TEE_Result syscall_cipher_update(unsigned long state, const void *src,
52 TEE_Result syscall_cipher_final(unsigned long state, const void *src,
55 TEE_Result syscall_cryp_derive_key(unsigned long state,
59 TEE_Result syscall_cryp_random_number_generate(void *buf, size_t blen);
61 TEE_Result syscall_authenc_init(unsigned long state, const void *nonce,
64 TEE_Result syscall_authenc_update_aad(unsigned long state,
66 TEE_Result syscall_authenc_update_payload(unsigned long state,
69 TEE_Result syscall_authenc_enc_final(unsigned long state,
72 TEE_Result syscall_authenc_dec_final(unsigned long state,
76 TEE_Result syscall_asymm_operate(unsigned long state,
80 TEE_Result syscall_asymm_verify(unsigned long state,
85 TEE_Result tee_obj_set_type(struct tee_obj *o, uint32_t obj_type,
90 TEE_Result tee_obj_attr_to_binary(struct tee_obj *o, void *data,
92 TEE_Result tee_obj_attr_from_binary(struct tee_obj *o, const void *data,
94 TEE_Result tee_obj_attr_copy_from(struct tee_obj *o, const struct tee_obj *src);