Home
last modified time | relevance | path

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

/u-boot/arch/sandbox/cpu/
A Dos.c54 off_t os_lseek(int fd, off_t offset, int whence) in os_lseek() argument
56 if (whence == OS_SEEK_SET) in os_lseek()
57 whence = SEEK_SET; in os_lseek()
58 else if (whence == OS_SEEK_CUR) in os_lseek()
59 whence = SEEK_CUR; in os_lseek()
60 else if (whence == OS_SEEK_END) in os_lseek()
61 whence = SEEK_END; in os_lseek()
64 return lseek(fd, offset, whence); in os_lseek()
/u-boot/include/
A Dos.h47 off_t os_lseek(int fd, off_t offset, int whence);
/u-boot/fs/yaffs2/
A Dyaffsfs.h96 loff_t yaffs_lseek(int fd, loff_t offset, int whence) ;
A Dyaffsfs.c1378 loff_t yaffs_lseek(int handle, loff_t offset, int whence) in yaffs_lseek() argument
1394 if (whence == SEEK_SET) { in yaffs_lseek()
1397 } else if (whence == SEEK_CUR) { in yaffs_lseek()
1400 } else if (whence == SEEK_END) { in yaffs_lseek()

Completed in 677 milliseconds