Lines Matching refs:pipefd
15 extern "C" int pipe2(int pipefd[2], int flags);
18 int pipefd[2]; in warning() local
19 pipe2(pipefd, O_NONBLOCK); in warning()
22 TEMP_FAILURE_RETRY(pipe2(pipefd, O_NONBLOCK)); in warning()
28 int pipefd[2]; in warningInMacroArugment() local
29 pipe2(pipefd, 3); in warningInMacroArugment()
32 TEMP_FAILURE_RETRY(pipe2(pipefd, 3)); in warningInMacroArugment()
37 pipe2(pipefd, flag); in warningInMacroArugment()
38 TEMP_FAILURE_RETRY(pipe2(pipefd, flag)); in warningInMacroArugment()
42 int pipe2(int pipefd[2], int flags);
45 int pipefd[2]; in noWarning() local
46 pipe2(pipefd, O_NONBLOCK); in noWarning()
47 TEMP_FAILURE_RETRY(pipe2(pipefd, O_NONBLOCK)); in noWarning()
53 int pipefd[2]; in noWarning() local
54 pipe2(pipefd, O_CLOEXEC); in noWarning()
55 TEMP_FAILURE_RETRY(pipe2(pipefd, O_CLOEXEC)); in noWarning()
56 pipe2(pipefd, O_NONBLOCK | O_CLOEXEC); in noWarning()
57 TEMP_FAILURE_RETRY(pipe2(pipefd, O_NONBLOCK | O_CLOEXEC)); in noWarning()
62 int pipe2(int pipefd[2], int flags);
64 int pipefd[2]; in noWarning() local
65 pipe2(pipefd, O_NONBLOCK); in noWarning()
66 TEMP_FAILURE_RETRY(pipe2(pipefd, O_NONBLOCK)); in noWarning()