Searched refs:whence (Results 1 – 4 of 4) sorted by relevance
/DragonOS-0.1.8/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.8/user/libs/libc/src/include/export/ |
D | unistd.h | 45 off_t lseek(int fd, off_t offset, int whence);
|
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/ |
D | unistd.md | 23 ``off_t lseek(int fd,off_t offset,int whence)`` : 调整文件访问位置
|
/DragonOS-0.1.8/kernel/src/syscall/ |
D | mod.rs | 476 let whence = args[2] as u32; in handle() localVariable 478 let w = match whence { in handle()
|