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

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java182 @Override public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { method in class:BlockGuardOs
184 return os.lseek(fd, offset, whence);
H A DForwardingOs.java125 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); } method in class:ForwardingOs
H A DLinux.java116 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; method in class:Linux
H A DOs.java111 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.java302 * See <a href="http://man7.org/linux/man-pages/man2/lseek.2.html">lseek(2)</a>.
304 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 116 milliseconds