Home
last modified time | relevance | path

Searched refs:whence (Results 1 – 4 of 4) sorted by relevance

/DragonOS-0.1.5/user/libs/libc/src/
Dunistd.c54 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/
Dunistd.h45 off_t lseek(int fd, off_t offset, int whence);
/DragonOS-0.1.5/docs/userland/libc/apis/api-list/
Dunistd.md23 ``off_t lseek(int fd,off_t offset,int whence)`` : 调整文件访问位置
/DragonOS-0.1.5/kernel/src/filesystem/vfs/
Dsyscall.rs128 let whence = regs.r10 as u32; in sys_lseek() localVariable
130 let w: SeekFrom = match whence { in sys_lseek()