Lines Matching refs:pipes
33 static int pipes[2];
40 { &fd, &pipes[1], EINVAL },
41 { &pipes[0], &fd, EINVAL },
42 { &pipes[0], &pipes[1], EINVAL },
48 SAFE_PIPE(pipes);
49 SAFE_WRITE(SAFE_WRITE_ALL, pipes[1], STR, sizeof(STR) - 1);
80 if (pipes[0] > 0)
81 SAFE_CLOSE(pipes[0]);
83 if (pipes[1] > 0)
84 SAFE_CLOSE(pipes[1]);