Home
last modified time | relevance | path

Searched refs:sendfile (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/native/
DFileChannelImpl.c223 result = sendfile(srcFD, dstFD, position, &numBytes, NULL, 0); in FileChannelImpl_transferTo0()
/libcore/luni/src/main/java/libcore/io/
DBlockGuardOs.java351 …@Override public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long by… in sendfile() method in BlockGuardOs
353 return super.sendfile(outFd, inFd, offset, byteCount); in sendfile()
DForwardingOs.java192 …public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) t… in sendfile() method in ForwardingOs
DOs.java164 …public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) t… in sendfile() method
DLinux.java217 …public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteC… in sendfile() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java515 …public static long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteC… in sendfile() method in Os
516 return Libcore.os.sendfile(outFd, inFd, offset, byteCount); in sendfile()
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1213 Os.sendfile(FileDescriptor.out, FileDescriptor.out, offset, 10); in test_sendfile_errno()
1251 android.system.Os.sendfile(outFd, inFd, offset, maxBytes); in checkSendfile()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2184 …jlong result = throwIfMinusOne(env, "sendfile", TEMP_FAILURE_RETRY(sendfile(outFd, inFd, offsetPtr… in Linux_sendfile()
2676 …NATIVE_METHOD(Linux, sendfile, "(Ljava/io/FileDescriptor;Ljava/io/FileDescriptor;Landroid/system/I…