Searched defs:lseek (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java185 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { method in class:BlockGuardOs
187 return os.lseek(fd, offset, whence);
H A DForwardingOs.java127 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); } method in class:ForwardingOs
H A DLinux.java118 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in class:Linux
H A DOs.java113 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in interface:Os
/libcore/luni/src/main/java/android/system/
H A DOs.java306 * See <a href="http://man7.org/linux/man-pages/man2/lseek.2.html">lseek(2)</a>.
308 public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return Libcore.os.lseek(fd, offset, whence); } method in class:Os

Completed in 47 milliseconds