Searched refs:lseek (Results 1 - 9 of 9) sorted by path

/libcore/luni/src/main/java/android/system/
H A DOs.java265 * See <a href="http://man7.org/linux/man-pages/man2/lseek.2.html">lseek(2)</a>.
267 public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return Libcore.os.lseek(fd, offset, whence); } method in class:Os
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java162 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { method in class:BlockGuardOs
164 return os.lseek(fd, offset, whence);
H A DForwardingOs.java109 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); } method in class:ForwardingOs
H A DOs.java101 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in interface:Os
H A DPosix.java103 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/native/
H A Dlibcore_io_Posix.cpp1275 return throwIfMinusOne(env, "lseek", TEMP_FAILURE_RETRY(lseek64(fd, offset, whence)));
2020 NATIVE_METHOD(Posix, lseek, "(Ljava/io/FileDescriptor;JI)J"),
/libcore/luni/src/test/java/libcore/java/io/
H A DFileInputStreamTest.java241 assertEquals(0, Libcore.os.lseek(fis.getFD(), 0, OsConstants.SEEK_CUR));
/libcore/ojluni/src/main/java/java/io/
H A DRandomAccessFile.java520 return Libcore.os.lseek(fd, 0L, SEEK_CUR);
545 Libcore.os.lseek(fd, offset, SEEK_SET);
/libcore/ojluni/src/main/native/
H A DFileChannelImpl.c50 #define lseek64 lseek

Completed in 347 milliseconds