Home
last modified time | relevance | path

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

/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/ojluni/src/test/java/util/stream/bootlib/java/util/stream/
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()
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()
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/luni/src/main/java/android/system/
DOs.java322 public static FileDescriptor[] pipe() throws ErrnoException { return Libcore.os.pipe2(0); } in pipe()
324 …/** @hide */ public static FileDescriptor[] pipe2(int flags) throws ErrnoException { return Libcor… in pipe2() method in Os
/libcore/luni/src/test/java/libcore/java/io/
DFileInputStreamTest.java75 FileDescriptor[] pipe = Libcore.os.pipe2(0); in testSkipInPipes()
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java120 public FileDescriptor[] pipe2(int flags) throws ErrnoException { return os.pipe2(flags); } in pipe2() method in ForwardingOs
DOs.java112 public FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method
DPosix.java114 public native FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method in Posix
/libcore/luni/src/main/native/
Dlibcore_io_Posix.cpp1349 throwIfMinusOne(env, "pipe2", TEMP_FAILURE_RETRY(pipe2(&fds[0], flags))); in Posix_pipe2()
2031 NATIVE_METHOD(Posix, pipe2, "(I)[Ljava/io/FileDescriptor;"),