Lines Matching defs:fd_out
30 static int fd_in, fd_out;
37 fd_out = SAFE_OPEN(TESTFILE2, O_RDONLY);
38 SAFE_READ(1, fd_out, splicebuffer, TEST_BLOCK_SIZE);
50 SAFE_CLOSE(fd_out);
59 fd_out = SAFE_OPEN(TESTFILE2, O_WRONLY | O_CREAT | O_TRUNC, 0666);
66 ret = splice(pipes[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0);
68 tst_brk(TBROK | TERRNO, "splice(pipe, fd_out) failed");
71 SAFE_CLOSE(fd_out);
95 if (fd_out > 0)
96 SAFE_CLOSE(fd_out);