Searched refs:fdOut (Results 1 - 8 of 8) 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 { argument
406 return os.splice(fdIn, offIn, fdOut, offOut, len, flags);
H A DOs.java167 public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException; argument
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); } argument
H A DLinux.java254 public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException; argument
/libcore/luni/src/test/java/libcore/libcore/io/
H A DOsTest.java963 FileDescriptor fdOut = streamOut.getFD();
964 long result = Libcore.os.splice(pipe[0], null /* offIn */, fdOut, offOut, 10 /* len */, 0 /* flags */);
989 //.fdOut == null
991 Libcore.os.splice(pipe[0] /* fdIn */, null /* offIn */, null /* fdOut */,
1002 FileDescriptor fdOut = streamOut.getFD();
1003 Libcore.os.splice(fdIn, null /* offIn */, fdOut, null /* offOut */, 10 /* len */, 0 /* flags */);
/libcore/luni/src/main/java/android/system/
H A DOs.java560 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); } argument
/libcore/ojluni/src/main/java/java/lang/
H A DSystem.java1714 FileOutputStream fdOut = new FileOutputStream(FileDescriptor.out);
1720 out = newPrintStream(fdOut, props.getProperty("sun.stdout.encoding"));
/libcore/luni/src/main/native/
H A Dlibcore_io_Linux.cpp2309 int fdOut = jniGetFDFromFileDescriptor(env, javaFdOut); local
2319 AsynchronousCloseMonitor monitorOut(fdOut);
2321 fdOut, (javaOffOut == NULL ? NULL : &offOut),

Completed in 226 milliseconds