Home
last modified time | relevance | path

Searched refs:pipe2 (Results 1 – 16 of 16) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
DIntStreamTestScenario.java161 IntStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
163 for (int t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
DDoubleStreamTestScenario.java160 DoubleStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
162 for (double t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
DLongStreamTestScenario.java160 LongStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
162 for (long t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
DStreamTestScenario.java172 Stream<U> pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
174 for (Object t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DDoubleStreamTestScenario.java164 DoubleStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
166 for (double t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
DIntStreamTestScenario.java164 IntStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
166 for (int t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
DLongStreamTestScenario.java163 LongStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
165 for (long t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
DStreamTestScenario.java175 Stream<U> pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
177 for (Object t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
/libcore/luni/src/main/java/android/system/
DOs.java415 public static FileDescriptor[] pipe() throws ErrnoException { return Libcore.os.pipe2(0); } in pipe()
419 …public static FileDescriptor[] pipe2(int flags) throws ErrnoException { return Libcore.os.pipe2(fl… in pipe2() method in Os
/libcore/luni/src/test/java/libcore/java/io/
DFileInputStreamTest.java86 FileDescriptor[] pipe = Libcore.os.pipe2(0); in testSkipInPipes()
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java168 public FileDescriptor[] pipe2(int flags) throws ErrnoException { return os.pipe2(flags); } in pipe2() method in ForwardingOs
DOs.java140 public FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method
DLinux.java135 public native FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method in Linux
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1202 Os.pipe2(-1); in test_pipe2_errno()
1285 FileDescriptor[] pipe = Os.pipe2(0); in test_splice()
1319 FileDescriptor[] pipe = Os.pipe2(0); in test_splice_errors()
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1933 int pipe2_result = throwIfMinusOne(env, "pipe2", TEMP_FAILURE_RETRY(pipe2(&fds[0], flags))); in Linux_pipe2()
2662 NATIVE_METHOD(Linux, pipe2, "(I)[Ljava/io/FileDescriptor;"),
/libcore/mmodules/core_platform_api/api/platform/
Dcurrent-api.txt99 method public static java.io.FileDescriptor[] pipe2(int) throws android.system.ErrnoException;