Searched defs:sendfile (Results 1 - 5 of 5) 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 { method in class:BlockGuardOs
294 return os.sendfile(outFd, inFd, offset, byteCount);
H A DForwardingOs.java156 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException { return os.sendfile(outFd, inFd, offset, byteCount); } method in class:ForwardingOs
H A DLinux.java211 public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException; method in class:Linux
H A DOs.java146 public long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException; method in interface:Os
/libcore/luni/src/main/java/android/system/
H A DOs.java457 * See <a href="http://man7.org/linux/man-pages/man2/sendfile.2.html">sendfile(2)</a>.
459 public static long sendfile(FileDescriptor outFd, FileDescriptor inFd, Int64Ref offset, long byteCount) throws ErrnoException { method in class:Os
460 return Libcore.os.sendfile(outFd, inFd, offset, byteCount);

Completed in 228 milliseconds