Home
last modified time | relevance | path

Searched defs:pipe2 (Results 1 – 12 of 12) sorted by relevance

/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/
DIntStreamTestScenario.java164 IntStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
DDoubleStreamTestScenario.java164 DoubleStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
DLongStreamTestScenario.java163 LongStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
DStreamTestScenario.java175 Stream<U> pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
/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
DDoubleStreamTestScenario.java160 DoubleStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
DLongStreamTestScenario.java160 LongStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
DStreamTestScenario.java172 Stream<U> pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local
/libcore/luni/src/main/java/android/system/
DOs.java421 …public static FileDescriptor[] pipe2(int flags) throws ErrnoException { return Libcore.os.pipe2(fl… in pipe2() method in Os
/libcore/luni/src/main/java/libcore/io/
DOs.java139 public FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method
DForwardingOs.java167 public FileDescriptor[] pipe2(int flags) throws ErrnoException { return os.pipe2(flags); } in pipe2() method in ForwardingOs
DLinux.java134 public native FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method in Linux