Searched refs:inFd (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java292 @Override public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException { argument
294 return os.sendfile(outFd, inFd, offset, byteCount);
H A DOs.java146 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException; argument
H A DForwardingOs.java156 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException { return os.sendfile(outFd, inFd, offset, byteCount); } argument
H A DLinux.java211 public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException; argument
/libcore/luni/src/test/java/libcore/libcore/io/
H A DOsTest.java893 FileDescriptor inFd = inStream.getFD();
899 android.system.Os.sendfile(outFd, inFd, offset, maxBytes);
905 libcore.io.Libcore.os.sendfile(outFd, inFd, offset, maxBytes);
/libcore/luni/src/main/java/android/system/
H A DOs.java459 public static long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException { argument
460 return Libcore.os.sendfile(outFd, inFd, offset, byteCount);
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp2085 int inFd = jniGetFDFromFileDescriptor(env, javaInFd); local
2093 jlong result = throwIfMinusOne(env, "sendfile", TEMP_FAILURE_RETRY(sendfile(outFd, inFd, offsetPtr, byteCount)));

Completed in 258 milliseconds