Home
last modified time | relevance | path

Searched refs:lseek (Results 1 – 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DRandomAccessFile.java520 return Libcore.os.lseek(fd, 0L, SEEK_CUR); in getFilePointer()
545 Libcore.os.lseek(fd, offset, SEEK_SET); in seek()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java162 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { in lseek() method in BlockGuardOs
164 return os.lseek(fd, offset, whence); in lseek()
DForwardingOs.java109 …public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.ls… in lseek() method in ForwardingOs
DOs.java101 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; in lseek() method
DPosix.java103 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; in lseek() method in Posix
/libcore/ojluni/src/main/native/
DFileChannelImpl.c50 #define lseek64 lseek
/libcore/luni/src/test/java/libcore/java/io/
DFileInputStreamTest.java241 assertEquals(0, Libcore.os.lseek(fis.getFD(), 0, OsConstants.SEEK_CUR)); in testSkipOnLargeFiles()
/libcore/luni/src/main/java/android/system/
DOs.java267 …public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { retur… in lseek() method in Os
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp2020 NATIVE_METHOD(Posix, lseek, "(Ljava/io/FileDescriptor;JI)J"),