Lines Matching defs:fd_out
25 static int fd_in, fd_out;
33 fd_out = SAFE_OPEN(TESTFILE2, O_RDONLY);
34 SAFE_READ(1, fd_out, teebuffer, TEST_BLOCK_SIZE);
46 SAFE_CLOSE(fd_out);
56 fd_out = SAFE_OPEN(TESTFILE2, O_WRONLY | O_CREAT | O_TRUNC, 0777);
69 ret = splice(pipe2[0], NULL, fd_out, NULL, TEST_BLOCK_SIZE, 0);
71 tst_brk(TBROK | TERRNO, "splice(pipe2, fd_out) failed");
77 SAFE_CLOSE(fd_out);
100 if (fd_out > 0)
101 SAFE_CLOSE(fd_out);