Home
last modified time | relevance | path

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

/bionic/tests/
Dfcntl_test.cpp215 int pipe1[2]; in TEST() local
216 ASSERT_EQ(0, pipe(pipe1)); in TEST()
225 …ssize_t bytes_read = splice(in, nullptr, pipe1[1], nullptr, 8*1024, SPLICE_F_MORE | SPLICE_F_MOVE); in TEST()
227 close(pipe1[1]); in TEST()
230 ssize_t bytes_teed = tee(pipe1[0], pipe2[1], SIZE_MAX, 0); in TEST()
236 FILE* fp1 = fdopen(pipe1[0], "r"); in TEST()