Lines Matching defs:pipefd
102 int pipefd[2];
110 ret = pipe(pipefd);
113 ret = write(pipefd[0], TEST_DATA, TEST_DATA_LEN);
116 close(pipefd[0]);
117 close(pipefd[1]);
185 int pipefd[2];
190 ret = pipe(pipefd);
192 ret = write(pipefd[1], TEST_DATA, TEST_DATA_LEN);
195 ret = read(pipefd[0], buf, TEST_DATA_LEN);
201 close(pipefd[0]);
202 close(pipefd[1]);