Home
last modified time | relevance | path

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

/optee_os/lib/libutee/include/
H A Dtee_api_types.h100 size_t dataPosition; member
116 uint32_t dataPosition; member
/optee_os/core/tee/
H A Dtee_svc_storage.c684 .data_pos = o->info.dataPosition, in syscall_storage_next_enum()
740 if (ADD_OVERFLOW(o->info.dataPosition, len, &pos_tmp)) { in syscall_storage_obj_read()
748 if (ADD_OVERFLOW(o->ds_pos, o->info.dataPosition, &pos_tmp)) { in syscall_storage_obj_read()
761 o->info.dataPosition += bytes; in syscall_storage_obj_read()
792 if (ADD_OVERFLOW(o->info.dataPosition, len, &pos_tmp)) { in syscall_storage_obj_write()
799 if (ADD_OVERFLOW(o->ds_pos, o->info.dataPosition, &pos_tmp)) { in syscall_storage_obj_write()
812 o->info.dataPosition += len; in syscall_storage_obj_write()
813 if (o->info.dataPosition > o->info.dataSize) in syscall_storage_obj_write()
814 o->info.dataSize = o->info.dataPosition; in syscall_storage_obj_write()
900 if (ADD_OVERFLOW(o->info.dataPosition, offset, &new_pos)) in syscall_storage_obj_seek()
[all …]
H A Dtee_svc_cryp.c1197 o_info.data_pos = o->info.dataPosition; in syscall_cryp_obj_get_info()
/optee_os/lib/libutee/
H A Dtee_api_objects.c71 objectInfo->dataPosition = 0; in TEE_GetObjectInfo()
79 objectInfo->dataPosition = info.data_pos; in TEE_GetObjectInfo()
100 objectInfo->dataPosition = 0; in __GP11_TEE_GetObjectInfo()
108 objectInfo->dataPosition = info.data_pos; in __GP11_TEE_GetObjectInfo()
131 objectInfo->dataPosition = info.data_pos; in TEE_GetObjectInfo1()
155 objectInfo->dataPosition = info.data_pos; in __GP11_TEE_GetObjectInfo1()
835 objectInfo->dataPosition = info.data_pos; in TEE_GetNextPersistentObject()
877 objectInfo->dataPosition = info.data_pos; in __GP11_TEE_GetNextPersistentObject()
/optee_os/core/drivers/crypto/se050/core/
H A Dstorage.c41 ret = o->pobj->fops->read(o->fh, o->info.dataPosition, in crypto_storage_obj_del()