Searched refs:lseek (Results 1 – 9 of 9) sorted by relevance
/libcore/ojluni/src/main/java/java/io/ |
D | RandomAccessFile.java | 520 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/ |
D | BlockGuardOs.java | 162 @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()
|
D | ForwardingOs.java | 109 …public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.ls… in lseek() method in ForwardingOs
|
D | Os.java | 101 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; in lseek() method
|
D | Posix.java | 103 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; in lseek() method in Posix
|
/libcore/ojluni/src/main/native/ |
D | FileChannelImpl.c | 50 #define lseek64 lseek
|
/libcore/luni/src/test/java/libcore/java/io/ |
D | FileInputStreamTest.java | 241 assertEquals(0, Libcore.os.lseek(fis.getFD(), 0, OsConstants.SEEK_CUR)); in testSkipOnLargeFiles()
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 267 …public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { retur… in lseek() method in Os
|
/libcore/luni/src/main/native/ |
D | libcore_io_Posix.cpp | 2020 NATIVE_METHOD(Posix, lseek, "(Ljava/io/FileDescriptor;JI)J"),
|