Home
last modified time | relevance | path

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

/bionic/tests/
Dfcntl_test.cpp205 int pipe1[2]; in TEST() local
206 ASSERT_EQ(0, pipe(pipe1)); in TEST()
215 ssize_t bytes_read = splice(in, 0, pipe1[1], NULL, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE); in TEST()
217 close(pipe1[1]); in TEST()
220 ssize_t bytes_teed = tee(pipe1[0], pipe2[1], SIZE_MAX, 0); in TEST()
226 FILE* fp1 = fdopen(pipe1[0], "r"); in TEST()