Home
last modified time | relevance | path

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

/device/linaro/bootloader/arm-trusted-firmware/drivers/io/
Dio_semihosting.c74 long sh_result; in sh_file_open() local
80 sh_result = semihosting_file_open(file_spec->path, file_spec->mode); in sh_file_open()
82 if (sh_result > 0) { in sh_file_open()
83 entity->info = (uintptr_t)sh_result; in sh_file_open()
93 long file_handle, sh_result; in sh_file_seek() local
99 sh_result = semihosting_file_seek(file_handle, offset); in sh_file_seek()
101 return (sh_result == 0) ? 0 : -ENOENT; in sh_file_seek()
114 long sh_result = semihosting_file_length(sh_handle); in sh_file_len() local
116 if (sh_result >= 0) { in sh_file_len()
118 *length = (size_t)sh_result; in sh_file_len()
[all …]