Searched defs:sendfile (Results 1 - 6 of 6) sorted by relevance

/libcore/luni/src/main/native/
H A DPortability.h44 // For Linux-compatible sendfile(3).
47 static inline ssize_t sendfile(int out_fd, int in_fd, off_t* offset, size_t count) { function
49 int result = sendfile(in_fd, out_fd, *offset, &in_out_count, NULL, 0);
73 #include <sys/sendfile.h>
/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java263 @Override public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { method in class:BlockGuardOs
265 return os.sendfile(outFd, inFd, inOffset, byteCount);
H A DForwardingOs.java137 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return os.sendfile(outFd, inFd, inOffset, byteCount); } method in class:ForwardingOs
H A DOs.java133 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException; method in interface:Os
H A DPosix.java195 public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException; method in class:Posix
/libcore/luni/src/main/java/android/system/
H A DOs.java402 * See <a href="http://man7.org/linux/man-pages/man2/sendfile.2.html">sendfile(2)</a>.
404 public static long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException { return Libcore.os.sendfile(outFd, inFd, inOffset, byteCount); } method in class:Os

Completed in 42 milliseconds