fcntl            1040 lib-src/emacsclient.c     fcntl (s, F_SETFD, FD_CLOEXEC);
fcntl             278 lib-src/seccomp-filter.c   RULE (SCMP_ACT_ALLOW, SCMP_SYS (fcntl),
fcntl              43 lib/cloexec.c    int flags = fcntl (desc, F_GETFD, 0);
fcntl              50 lib/cloexec.c            || fcntl (desc, F_SETFD, newflags) != -1)
fcntl              82 lib/cloexec.c    return fcntl (fd, F_DUPFD_CLOEXEC, 0);
fcntl             176 lib/dup2.c         return fcntl (fd, F_GETFL) == -1 ? -1 : fd;
fcntl             202 lib/fcntl.c    fcntl (int fd, int action, /* arg */...)
fcntl             203 lib/fcntl.c    #undef fcntl
fcntl             328 lib/fcntl.c                result = fcntl (fd, action);
fcntl             424 lib/fcntl.c                  result = fcntl (fd, action, x);
fcntl             432 lib/fcntl.c                  result = fcntl (fd, action, p);
fcntl             462 lib/fcntl.c          int flags = fcntl (fd, F_GETFD);
fcntl             467 lib/fcntl.c              result = fcntl (fd, F_DUPFD, target);
fcntl             468 lib/fcntl.c              if (0 <= result && fcntl (fd, F_SETFD, flags) == -1)
fcntl             482 lib/fcntl.c      result = fcntl (fd, F_DUPFD, target);
fcntl             512 lib/fcntl.c          result = fcntl (fd, F_DUPFD_CLOEXEC, target);
fcntl             533 lib/fcntl.c          int flags = fcntl (result, F_GETFD);
fcntl             534 lib/fcntl.c          if (flags < 0 || fcntl (result, F_SETFD, flags | FD_CLOEXEC) == -1)
fcntl             560 lib/fcntl.c      result = fcntl (fd, action, arg);
fcntl             571 lib/fcntl.c              while (fcntl (arg, F_GETFL) != -1 || errno != EBADF)
fcntl             143 lib/fcntl.in.h _GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...));
fcntl             144 lib/fcntl.in.h _GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...));
fcntl             150 lib/fcntl.in.h _GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...));
fcntl             155 lib/fcntl.in.h _GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...));
fcntl             157 lib/fcntl.in.h _GL_CXXALIASWARN (fcntl);
fcntl             161 lib/fcntl.in.h _GL_WARN_ON_USE (fcntl, "fcntl is not always POSIX compliant - "
fcntl             119 lib/pipe2.c          if ((fcntl_flags = fcntl (fd[1], F_GETFL, 0)) < 0
fcntl             120 lib/pipe2.c              || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
fcntl             121 lib/pipe2.c              || (fcntl_flags = fcntl (fd[0], F_GETFL, 0)) < 0
fcntl             122 lib/pipe2.c              || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
fcntl             130 lib/pipe2.c          if ((fcntl_flags = fcntl (fd[1], F_GETFD, 0)) < 0
fcntl             131 lib/pipe2.c              || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1
fcntl             132 lib/pipe2.c              || (fcntl_flags = fcntl (fd[0], F_GETFD, 0)) < 0
fcntl             133 lib/pipe2.c              || fcntl (fd[0], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)
fcntl             139 nt/inc/sys/socket.h int fcntl (int s, int cmd, int options);
fcntl            1779 src/androidvfs.c   flags = fcntl (fd, F_GETFD);
fcntl            1788 src/androidvfs.c   rc = fcntl (fd, F_SETFD, flags | O_CLOEXEC);
fcntl            1210 src/callproc.c   fcntl (STDERR_FILENO, F_SETFL, O_NONBLOCK);
fcntl            1666 src/emacs.c    	      || (fcntl (STDIN_FILENO, F_DUPFD_CLOEXEC, STDOUT_FILENO)
fcntl            1890 src/emacs.c                    fcntl (daemon_pipe[0], F_SETFD, 0);
fcntl            1891 src/emacs.c                    fcntl (daemon_pipe[1], F_SETFD, 0);
fcntl            1909 src/emacs.c                fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC);
fcntl            7937 src/keyboard.c   fcntl (fileno (tty->input), F_SETFL, O_NONBLOCK);
fcntl            7969 src/keyboard.c   fcntl (fileno (tty->input), F_SETFL, 0);
fcntl            6923 src/pgtkterm.c       fcntl (dpyinfo->connection, F_SETOWN, getpid ());
fcntl             958 src/print.c    	  int n = fcntl (STDERR_FILENO, F_DUPFD_CLOEXEC, STDERR_FILENO + 1);
fcntl             203 src/process.c      fcntl (fd, F_SETFD, FD_CLOEXEC);
fcntl             880 src/process.c  	    fcntl (fd, F_SETFD, FD_CLOEXEC);
fcntl            2199 src/process.c        fcntl (inchannel, F_SETPIPE_SZ, read_process_output_max);
fcntl            2222 src/process.c    fcntl (inchannel, F_SETFL, O_NONBLOCK);
fcntl            2223 src/process.c    fcntl (outchannel, F_SETFL, O_NONBLOCK);
fcntl            2343 src/process.c        fcntl (pty_fd, F_SETFL, O_NONBLOCK);
fcntl            2436 src/process.c    fcntl (inchannel, F_SETFL, O_NONBLOCK);
fcntl            2437 src/process.c    fcntl (outchannel, F_SETFL, O_NONBLOCK);
fcntl            3456 src/process.c  	  ret = fcntl (s, F_SETFL, O_NONBLOCK);
fcntl            3684 src/process.c    fcntl (inch, F_SETFL, O_NONBLOCK);
fcntl            5029 src/process.c    fcntl (s, F_SETFL, O_NONBLOCK);
fcntl            7373 src/process.c    if (fcntl (fds[0], F_SETFL, O_NONBLOCK) != 0)
fcntl            7375 src/process.c    if (fcntl (fds[1], F_SETFL, O_NONBLOCK) != 0)
fcntl             795 src/sysdep.c     old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
fcntl             796 src/sysdep.c     fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
fcntl             808 src/sysdep.c     fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
fcntl            1307 src/sysdep.c           fcntl (fileno (tty_out->input), F_GETOWN, 0);
fcntl            1308 src/sysdep.c         fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
fcntl            1314 src/sysdep.c   	  fcntl (gpm_fd, F_SETOWN, getpid ());
fcntl            1315 src/sysdep.c   	  fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
fcntl            1554 src/sysdep.c         fcntl (fileno (tty_out->input), F_SETOWN,
fcntl            1558 src/sysdep.c     fcntl (fileno (tty_out->input), F_SETFL,
fcntl            1559 src/sysdep.c            fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
fcntl            31029 src/xterm.c      fcntl (dpyinfo->connection, F_SETOWN, getpid ());
fcntl            7059 test/manual/etags/c-src/emacs/src/keyboard.c   fcntl (fileno (tty->input), F_SETFL, O_NONBLOCK);
fcntl            7109 test/manual/etags/c-src/emacs/src/keyboard.c   fcntl (fileno (tty->input), F_SETFL, 0);