Home
last modified time | relevance | path

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

/DragonOS-0.1.8/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.8/user/libs/libc/src/include/export/
Dunistd.h45 off_t lseek(int fd, off_t offset, int whence);
/DragonOS-0.1.8/docs/userland/libc/apis/api-list/
Dunistd.md23 ``off_t lseek(int fd,off_t offset,int whence)`` : 调整文件访问位置
/DragonOS-0.1.8/kernel/src/syscall/
Dmod.rs476 let whence = args[2] as u32; in handle() localVariable
478 let w = match whence { in handle()