/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
D | IntStreamTestScenario.java | 161 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()
|
D | DoubleStreamTestScenario.java | 160 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()
|
D | LongStreamTestScenario.java | 160 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()
|
D | StreamTestScenario.java | 172 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/ |
D | DoubleStreamTestScenario.java | 164 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()
|
D | IntStreamTestScenario.java | 164 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()
|
D | LongStreamTestScenario.java | 163 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()
|
D | StreamTestScenario.java | 175 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/ |
D | Os.java | 415 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/ |
D | FileInputStreamTest.java | 86 FileDescriptor[] pipe = Libcore.os.pipe2(0); in testSkipInPipes()
|
/libcore/luni/src/main/java/libcore/io/ |
D | ForwardingOs.java | 168 public FileDescriptor[] pipe2(int flags) throws ErrnoException { return os.pipe2(flags); } in pipe2() method in ForwardingOs
|
D | Os.java | 140 public FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method
|
D | Linux.java | 135 public native FileDescriptor[] pipe2(int flags) throws ErrnoException; in pipe2() method in Linux
|
/libcore/luni/src/test/java/libcore/android/system/ |
D | OsTest.java | 1202 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/ |
D | libcore_io_Linux.cpp | 1933 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/ |
D | current-api.txt | 99 method public static java.io.FileDescriptor[] pipe2(int) throws android.system.ErrnoException;
|