Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
Dio_util_md.h74 #define lseek64 lseek macro
78 #define IO_Lseek lseek64
DFileChannelImpl.c52 #define lseek64 lseek macro
56 #define lseek64 lseek macro
143 result = lseek64(fd, 0, SEEK_CUR); in FileChannelImpl_position0()
145 result = lseek64(fd, offset, SEEK_SET); in FileChannelImpl_position0()
Dio_util_md.c237 if ((current = lseek64(fd, 0, SEEK_CUR)) == -1) { in handleAvailable()
242 if ((size = lseek64(fd, 0, SEEK_END)) == -1) in handleAvailable()
244 else if (lseek64(fd, current, SEEK_SET) == -1) in handleAvailable()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1899 return throwIfMinusOne(env, "lseek", TEMP_FAILURE_RETRY(lseek64(fd, offset, whence))); in Linux_lseek()