Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/native/
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()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1848 return throwIfMinusOne(env, "lseek", TEMP_FAILURE_RETRY(lseek64(fd, offset, whence))); in Linux_lseek()