Searched defs:splice (Results 1 - 5 of 5) sorted by relevance

/libcore/luni/src/main/java/libcore/io/
H A DBlockGuardOs.java401 @Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { method in class:BlockGuardOs
402 // It's infeasible to figure out if splice will result in read or write (would require fstat to figure out which fd is pipe).
406 return os.splice(fdIn, offIn, fdOut, offOut, len, flags);
H A DForwardingOs.java180 public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return os.splice(fdIn, offIn, fdOut, offOut, len, flags); } method in class:ForwardingOs
H A DLinux.java254 public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException; method in class:Linux
H A DOs.java167 public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException; method in interface:Os
/libcore/luni/src/main/java/android/system/
H A DOs.java557 * See <a href="http://man7.org/linux/man-pages/man2/splice.2.html">splice(2)</a>.
560 public static long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return Libcore.os.splice(fdIn, offIn, fdOut, offOut, len, flags); } method in class:Os

Completed in 13 milliseconds