Searched refs:pipefd (Results 26 - 28 of 28) sorted by relevance

12

/freebsd-13-stable/contrib/sendmail/src/
H A Ddaemon.c234 int pipefd[2]; local
639 pipefd[0] = pipefd[1] = -1;
650 if (pipe(pipefd) < 0)
651 pipefd[0] = pipefd[1] = -1;
658 if (pipefd[0] != -1)
660 (void) close(pipefd[0]);
661 (void) close(pipefd[1]);
777 if (pipefd[
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp729 INTERCEPTOR(int, pipe, int pipefd[2]) { argument
731 return REAL(pipe)(pipefd);
733 int res = REAL(pipe)(pipefd);
735 __msan_unpoison(pipefd, sizeof(int[2]));
739 INTERCEPTOR(int, pipe2, int pipefd[2], int flags) { argument
741 int res = REAL(pipe2)(pipefd, flags);
743 __msan_unpoison(pipefd, sizeof(int[2]));
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_posix.cpp1714 TSAN_INTERCEPTOR(int, pipe, int *pipefd) { argument
1715 SCOPED_TSAN_INTERCEPTOR(pipe, pipefd);
1716 int res = REAL(pipe)(pipefd);
1717 if (res == 0 && pipefd[0] >= 0 && pipefd[1] >= 0)
1718 FdPipeCreate(thr, pc, pipefd[0], pipefd[1]);
1723 TSAN_INTERCEPTOR(int, pipe2, int *pipefd, int flags) { argument
1724 SCOPED_TSAN_INTERCEPTOR(pipe2, pipefd, flags);
1725 int res = REAL(pipe2)(pipefd, flag
[all...]

Completed in 97 milliseconds

12