Home
last modified time | relevance | path

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

/kernel/liteos_a/compat/posix/src/
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()
97 if (offsetLow == 0) { in _lseek64()
100 seekdir(filep->f_dir, offsetLow); in _lseek64()
/kernel/liteos_a/syscall/
Dlos_syscall.h251 extern off64_t SysLseek64(int fd, int offsetHigh, int offsetLow, off64_t *result, int whence);
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()