FD_CLOEXEC        116 maint/gnulib/lib/accept4.c           || fcntl (fd, F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)
FD_CLOEXEC         47 maint/gnulib/lib/cloexec.c       int newflags = (value ? flags | FD_CLOEXEC : flags & ~FD_CLOEXEC);
FD_CLOEXEC        237 maint/gnulib/lib/fcntl.c           result = (flags & HANDLE_FLAG_INHERIT) ? 0 : FD_CLOEXEC;
FD_CLOEXEC        534 maint/gnulib/lib/fcntl.c       if (flags < 0 || fcntl (result, F_SETFD, flags | FD_CLOEXEC) == -1)
FD_CLOEXEC        582 maint/gnulib/lib/fcntl.c           result = (ulMode & OPEN_FLAGS_NOINHERIT) ? FD_CLOEXEC : 0;
FD_CLOEXEC        586 maint/gnulib/lib/fcntl.c           if (arg & ~FD_CLOEXEC)
FD_CLOEXEC        592 maint/gnulib/lib/fcntl.c           if (arg & FD_CLOEXEC)
FD_CLOEXEC        239 maint/gnulib/lib/fcntl.in.h #ifndef FD_CLOEXEC
FD_CLOEXEC        132 maint/gnulib/lib/pipe2.c           || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1
FD_CLOEXEC        134 maint/gnulib/lib/pipe2.c           || fcntl (fd[0], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)
FD_CLOEXEC         82 maint/gnulib/lib/popen.c                     fcntl (STDIN_FILENO, F_GETFD) | FD_CLOEXEC) == -1)
FD_CLOEXEC         89 maint/gnulib/lib/popen.c                     fcntl (STDOUT_FILENO, F_GETFD) | FD_CLOEXEC) == -1)
FD_CLOEXEC         60 maint/gnulib/tests/test-cloexec.c   return 0 <= i && (i & FD_CLOEXEC) == 0;
FD_CLOEXEC         94 maint/gnulib/tests/test-dup-safer.c   return 0 <= i && (i & FD_CLOEXEC) == 0;
FD_CLOEXEC         89 maint/gnulib/tests/test-dup2.c   return 0 <= i && (i & FD_CLOEXEC) == 0;
FD_CLOEXEC         75 maint/gnulib/tests/test-dup3.c   return (flags & FD_CLOEXEC) != 0;
FD_CLOEXEC         32 maint/gnulib/tests/test-fcntl-h.c int i = FD_CLOEXEC;
FD_CLOEXEC         88 maint/gnulib/tests/test-fcntl.c   return 0 <= i && (i & FD_CLOEXEC) == 0;
FD_CLOEXEC        341 maint/gnulib/tests/test-fcntl.c     ASSERT ((result & FD_CLOEXEC) == FD_CLOEXEC);
FD_CLOEXEC        345 maint/gnulib/tests/test-fcntl.c     ASSERT ((result & FD_CLOEXEC) == 0);
FD_CLOEXEC         54 maint/gnulib/tests/test-fopen-gnu.c   ASSERT ((flags & FD_CLOEXEC) == 0);
FD_CLOEXEC         64 maint/gnulib/tests/test-fopen-gnu.c   ASSERT ((flags & FD_CLOEXEC) != 0);
FD_CLOEXEC        106 maint/gnulib/tests/test-open.h           ASSERT ((flags & FD_CLOEXEC) != 0);
FD_CLOEXEC         71 maint/gnulib/tests/test-pipe.c   return (flags & FD_CLOEXEC) != 0;
FD_CLOEXEC         74 maint/gnulib/tests/test-pipe2.c   return (flags & FD_CLOEXEC) != 0;