Searched refs:offsetHigh (Results 1 - 3 of 3) sorted by relevance
/kernel/liteos_a/compat/posix/src/ |
H A D | stdio.c | 77 off64_t _lseek64(int fd, int offsetHigh, int offsetLow, off64_t *result, int whence) in _lseek64() argument 81 off64_t offset = ((off64_t)offsetHigh << 32) + (uint)offsetLow; /* 32: offsetHigh is high 32 bits */ in _lseek64()
|
/kernel/liteos_a/syscall/ |
H A D | los_syscall.h | 251 extern off64_t SysLseek64(int fd, int offsetHigh, int offsetLow, off64_t *result, int whence);
|
H A D | fs_syscall.c | 704 off64_t SysLseek64(int fd, int offsetHigh, int offsetLow, off64_t *result, int whence) in SysLseek64() argument 713 ret = _lseek64(fd, offsetHigh, offsetLow, &res, whence); in SysLseek64()
|
Completed in 4 milliseconds