Searched refs:whence (Results 1 – 4 of 4) sorted by relevance
/DragonOS-0.1.5/user/libs/libc/src/ |
D | unistd.c | 54 off_t lseek(int fd, off_t offset, int whence) in lseek() argument 56 return (off_t)syscall_invoke(SYS_LSEEK, fd, offset, whence, 0, 0, 0, 0, 0); in lseek()
|
/DragonOS-0.1.5/user/libs/libc/src/include/export/ |
D | unistd.h | 45 off_t lseek(int fd, off_t offset, int whence);
|
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/ |
D | unistd.md | 23 ``off_t lseek(int fd,off_t offset,int whence)`` : 调整文件访问位置
|
/DragonOS-0.1.5/kernel/src/filesystem/vfs/ |
D | syscall.rs | 128 let whence = regs.r10 as u32; in sys_lseek() localVariable 130 let w: SeekFrom = match whence { in sys_lseek()
|