Searched refs:whence (Results 1 - 7 of 7) 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 { argument
187 return os.lseek(fd, offset, whence);
H A DOs.java113 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; argument
H A DForwardingOs.java127 public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return os.lseek(fd, offset, whence); } argument
H A DLinux.java118 public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException; argument
/libcore/luni/src/main/java/android/system/
H A DOs.java308 public static long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException { return Libcore.os.lseek(fd, offset, whence); } argument
/libcore/ojluni/src/main/native/
H A Djvm.h1169 * Move the file descriptor pointer from whence by offset.
1173 * whence the start from where to move it.
1178 JVM_Lseek(jint fd, jlong offset, jint whence);
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp1766 static jlong Linux_lseek(JNIEnv* env, jobject, jobject javaFd, jlong offset, jint whence) { argument
1768 return throwIfMinusOne(env, "lseek", TEMP_FAILURE_RETRY(lseek64(fd, offset, whence)));

Completed in 65 milliseconds