Searched refs:fdOut (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 478 …@Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref o… in splice() argument 483 return super.splice(fdIn, offIn, fdOut, offOut, len, flags); in splice()
|
D | ForwardingOs.java | 218 …f offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { retur… in splice() argument
|
D | Os.java | 186 …public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, lon… in splice() argument
|
D | Linux.java | 259 …public native long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offO… in splice() argument
|
/libcore/ojluni/src/main/java/java/lang/ |
D | System.java | 1713 FileOutputStream fdOut = new FileOutputStream(FileDescriptor.out); 1719 out = newPrintStream(fdOut, props.getProperty("sun.stdout.encoding"));
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 653 …fIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return Li… in splice() argument
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 1402 FileDescriptor fdOut = streamOut.getFD(); in test_splice() local 1404 .splice(pipe[0], null /* offIn */, fdOut, offOut, 10 /* len */, 0 /* flags */); in test_splice() 1442 FileDescriptor fdOut = streamOut.getFD(); in test_splice_errors() local 1443 Os.splice(fdIn, null /* offIn */, fdOut, null /* offOut */, 10 /* len */, in test_splice_errors()
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2425 int fdOut = jniGetFDFromFileDescriptor(env, javaFdOut); in Linux_splice() local 2435 AsynchronousCloseMonitor monitorOut(fdOut); in Linux_splice() 2437 fdOut, (javaOffOut == NULL ? NULL : &offOut), in Linux_splice()
|