Searched refs:pipe2 (Results 1 - 13 of 13) sorted by relevance

/external/bison/lib/
H A Dunistd--.h30 # undef pipe2 macro
31 # define pipe2 pipe2_safer macro
H A Dpipe2-safer.c1 /* Invoke pipe2, but avoid some glitches.
27 /* Like pipe2, but ensure that neither of the file descriptors is
34 if (pipe2 (fd, flags) == 0)
H A Dpipe2.c40 pipe2 (int fd[2], int flags) function
50 # undef pipe2 macro
58 int result = pipe2 (fd, flags);
H A Dunistd.in.h1127 <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>. */
1130 # define pipe2 rpl_pipe2
1132 _GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));
1133 _GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags));
1135 _GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));
1136 _GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags));
1138 _GL_CXXALIASWARN (pipe2);
1140 # undef pipe2
1142 _GL_WARN_ON_USE (pipe2, "pipe2 i
[all...]
H A Dgnulib.mk1237 ## begin gnulib module pipe2
1239 libbison_a_SOURCES += pipe2.c
1241 ## end gnulib module pipe2
1243 ## begin gnulib module pipe2-safer
1245 libbison_a_SOURCES += pipe2-safer.c
1247 ## end gnulib module pipe2-safer
/external/bison/
H A DAndroid.mk71 lib/pipe2-safer.c \
72 lib/pipe2.c \
/external/qemu/
H A Doslib-posix.c99 ret = pipe2(pipefd, O_CLOEXEC);
/external/bison/darwin-lib/
H A Dunistd.h1439 <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>. */
1442 # define pipe2 rpl_pipe2
1444 _GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));
1445 _GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags));
1447 _GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));
1448 _GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags));
1450 _GL_CXXALIASWARN (pipe2); variable
1452 # undef pipe2 macro
1454 _GL_WARN_ON_USE (pipe2, "pipe2 i
[all...]
/external/bison/linux-lib/
H A Dunistd.h1439 <http://www.kernel.org/doc/man-pages/online/pages/man2/pipe2.2.html>. */
1442 # define pipe2 rpl_pipe2 macro
1444 _GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));
1445 _GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags));
1447 _GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1)));
1448 _GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags));
1450 _GL_CXXALIASWARN (pipe2); variable
1452 # undef pipe2 macro
1454 _GL_WARN_ON_USE (pipe2, "pipe2 i
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc616 INTERCEPTOR(int, pipe2, int pipefd[2], int flags) {
618 int res = REAL(pipe2)(pipefd, flags);
1238 INTERCEPT_FUNCTION(pipe2);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc1451 TSAN_INTERCEPTOR(int, pipe2, int *pipefd, int flags) {
1452 SCOPED_TSAN_INTERCEPTOR(pipe2, pipefd, flags);
1453 int res = REAL(pipe2)(pipefd, flags);
2031 TSAN_INTERCEPT(pipe2);
/external/chromium_org/sandbox/linux/seccomp-bpf/
H A Dsandbox_bpf.cc257 if (pipe2(fds, O_NONBLOCK|O_CLOEXEC)) {
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc674 TEST(MemorySanitizer, pipe2) {
676 int res = pipe2(pipefd, O_NONBLOCK);

Completed in 363 milliseconds