Lines Matching refs:o

25 	TEE_ObjectHandle o = TEE_HANDLE_NULL;  in ta_storage_cmd_open()  local
54 params[1].value.a, &o); in ta_storage_cmd_open()
56 params[1].value.b = (uintptr_t)o; in ta_storage_cmd_open()
68 TEE_ObjectHandle o = TEE_HANDLE_NULL; in ta_storage_cmd_create() local
102 params[3].memref.size, &o); in ta_storage_cmd_create()
107 params[1].value.b = (uintptr_t)o; in ta_storage_cmd_create()
117 TEE_ObjectHandle o = TEE_HANDLE_NULL; in ta_storage_cmd_create_overwrite() local
145 NULL, NULL, 0, &o); in ta_storage_cmd_create_overwrite()
146 TEE_CloseObject(o); in ta_storage_cmd_create_overwrite()
167 TEE_ObjectHandle o = VAL2HANDLE(params[1].value.a); in ta_storage_cmd_read() local
180 res = TEE_ReadObjectData(o, b0, params[0].memref.size, in ta_storage_cmd_read()
191 TEE_ObjectHandle o = VAL2HANDLE(params[1].value.a); in ta_storage_cmd_write() local
205 res = TEE_WriteObjectData(o, b0, params[0].memref.size); in ta_storage_cmd_write()
215 TEE_ObjectHandle o = VAL2HANDLE(params[0].value.a); in ta_storage_cmd_seek() local
224 res = TEE_SeekObjectData(o, offs, params[1].value.a); in ta_storage_cmd_seek()
227 res = TEE_GetObjectInfo1(o, &info); in ta_storage_cmd_seek()
236 TEE_ObjectHandle o = VAL2HANDLE(params[0].value.a); in ta_storage_cmd_unlink() local
242 TEE_CloseAndDeletePersistentObject1(o); in ta_storage_cmd_unlink()
250 TEE_ObjectHandle o = VAL2HANDLE(params[0].value.a); in ta_storage_cmd_rename() local
277 res = TEE_RenamePersistentObject(o, object_id, params[1].memref.size); in ta_storage_cmd_rename()
287 TEE_ObjectHandle o = VAL2HANDLE(params[0].value.a); in ta_storage_cmd_trunc() local
293 return TEE_TruncateObjectData(o, params[0].value.b); in ta_storage_cmd_trunc()
559 TEE_ObjectHandle o = TEE_HANDLE_NULL; in ta_storage_cmd_restrict_usage() local
565 o = (TEE_ObjectHandle)(uintptr_t)params[0].value.a; in ta_storage_cmd_restrict_usage()
566 TEE_RestrictObjectUsage1(o, params[0].value.b); in ta_storage_cmd_restrict_usage()
573 TEE_ObjectHandle o = TEE_HANDLE_NULL; in ta_storage_cmd_alloc_obj() local
581 &o); in ta_storage_cmd_alloc_obj()
582 params[1].value.a = (uint32_t)(uintptr_t)o; in ta_storage_cmd_alloc_obj()
588 TEE_ObjectHandle o = TEE_HANDLE_NULL; in ta_storage_cmd_free_obj() local
594 o = (TEE_ObjectHandle)(uintptr_t)params[0].value.a; in ta_storage_cmd_free_obj()
595 TEE_FreeTransientObject(o); in ta_storage_cmd_free_obj()
601 TEE_ObjectHandle o = TEE_HANDLE_NULL; in ta_storage_cmd_reset_obj() local
607 o = (TEE_ObjectHandle)(uintptr_t)params[0].value.a; in ta_storage_cmd_reset_obj()
608 TEE_ResetTransientObject(o); in ta_storage_cmd_reset_obj()
617 TEE_ObjectHandle o = VAL2HANDLE(params[0].value.a); in ta_storage_cmd_get_obj_info() local
626 res = TEE_GetObjectInfo1(o, &info); in ta_storage_cmd_get_obj_info()