Searched refs:whence (Results 1 – 4 of 4) sorted by relevance
| /rk3399_rockchip-uboot/arch/sandbox/cpu/ |
| H A D | os.c | 53 off_t os_lseek(int fd, off_t offset, int whence) in os_lseek() argument 55 if (whence == OS_SEEK_SET) in os_lseek() 56 whence = SEEK_SET; in os_lseek() 57 else if (whence == OS_SEEK_CUR) in os_lseek() 58 whence = SEEK_CUR; in os_lseek() 59 else if (whence == OS_SEEK_END) in os_lseek() 60 whence = SEEK_END; in os_lseek() 63 return lseek(fd, offset, whence); in os_lseek()
|
| /rk3399_rockchip-uboot/include/ |
| H A D | os.h | 57 off_t os_lseek(int fd, off_t offset, int whence);
|
| /rk3399_rockchip-uboot/fs/yaffs2/ |
| H A D | yaffsfs.h | 96 loff_t yaffs_lseek(int fd, loff_t offset, int whence) ;
|
| H A D | yaffsfs.c | 1377 loff_t yaffs_lseek(int handle, loff_t offset, int whence) in yaffs_lseek() argument 1393 if (whence == SEEK_SET) { in yaffs_lseek() 1396 } else if (whence == SEEK_CUR) { in yaffs_lseek() 1399 } else if (whence == SEEK_END) { in yaffs_lseek()
|