Home
last modified time | relevance | path

Searched refs:offsetHigh (Results 1 - 3 of 3) sorted by relevance

/kernel/liteos_a/compat/posix/src/
H A Dstdio.c77 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 Dlos_syscall.h251 extern off64_t SysLseek64(int fd, int offsetHigh, int offsetLow, off64_t *result, int whence);
H A Dfs_syscall.c704 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