Searched refs:pos_tmp (Results 1 – 1 of 1) sorted by relevance
/optee_os-3.20.0/core/tee/ |
A D | tee_svc_storage.c | 695 size_t pos_tmp = 0; in syscall_storage_obj_read() local 713 if (ADD_OVERFLOW(o->info.dataPosition, len, &pos_tmp)) { in syscall_storage_obj_read() 726 if (ADD_OVERFLOW(o->ds_pos, o->info.dataPosition, &pos_tmp)) { in syscall_storage_obj_read() 730 res = o->pobj->fops->read(o->fh, pos_tmp, data, &bytes); in syscall_storage_obj_read() 753 size_t pos_tmp = 0; in syscall_storage_obj_write() local 770 if (ADD_OVERFLOW(o->info.dataPosition, len, &pos_tmp)) { in syscall_storage_obj_write() 782 if (ADD_OVERFLOW(o->ds_pos, o->info.dataPosition, &pos_tmp)) { in syscall_storage_obj_write() 786 res = o->pobj->fops->write(o->fh, pos_tmp, data, len); in syscall_storage_obj_write()
|
Completed in 3 milliseconds