Searched refs:fdOut (Results 1 – 8 of 8) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | BlockGuardOs.java | 476 …@Override public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref o… in splice() argument 481 return super.splice(fdIn, offIn, fdOut, offOut, len, flags); in splice()
|
D | ForwardingOs.java | 219 …f offIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { retur… in splice() argument
|
D | Os.java | 187 …public long splice(FileDescriptor fdIn, Int64Ref offIn, FileDescriptor fdOut, Int64Ref offOut, lon… in splice() argument
|
D | Linux.java | 260 …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 | 1712 FileOutputStream fdOut = new FileOutputStream(FileDescriptor.out); 1718 out = newPrintStream(fdOut, props.getProperty("sun.stdout.encoding"));
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 1303 FileDescriptor fdOut = streamOut.getFD(); in test_splice() local 1305 .splice(pipe[0], null /* offIn */, fdOut, offOut, 10 /* len */, 0 /* flags */); in test_splice() 1343 FileDescriptor fdOut = streamOut.getFD(); in test_splice_errors() local 1344 Os.splice(fdIn, null /* offIn */, fdOut, null /* offOut */, 10 /* len */, in test_splice_errors()
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 650 …fIn, FileDescriptor fdOut, Int64Ref offOut, long len, int flags) throws ErrnoException { return Li… in splice() argument
|
/libcore/luni/src/main/native/ |
D | libcore_io_Linux.cpp | 2422 int fdOut = jniGetFDFromFileDescriptor(env, javaFdOut); in Linux_splice() local 2432 AsynchronousCloseMonitor monitorOut(fdOut); in Linux_splice() 2434 fdOut, (javaOffOut == NULL ? NULL : &offOut), in Linux_splice()
|