Searched refs:pipe2 (Results 1 – 14 of 14) sorted by relevance
164 DoubleStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local166 for (double t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
164 IntStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local166 for (int t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
163 LongStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local165 for (long t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
175 Stream<U> pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local177 for (Object t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
160 DoubleStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local162 for (double t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
161 IntStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local163 for (int t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
160 LongStream pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local162 for (long t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
172 Stream<U> pipe2 = m.apply(pipe1); in PAR_STREAM_TO_ARRAY_CLEAR_SIZED() local174 for (Object t : pipe2.toArray()) in PAR_STREAM_TO_ARRAY_CLEAR_SIZED()
322 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
75 FileDescriptor[] pipe = Libcore.os.pipe2(0); in testSkipInPipes()
120 public FileDescriptor[] pipe2(int flags) throws ErrnoException { return os.pipe2(flags); } in pipe2() method in ForwardingOs
112 public FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method
114 public native FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method in Posix
1349 throwIfMinusOne(env, "pipe2", TEMP_FAILURE_RETRY(pipe2(&fds[0], flags))); in Posix_pipe2()2031 NATIVE_METHOD(Posix, pipe2, "(I)[Ljava/io/FileDescriptor;"),