fcntl            1038 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              44 lib/cloexec.c    int flags = fcntl (desc, F_GETFD, 0);
fcntl              51 lib/cloexec.c            || fcntl (desc, F_SETFD, newflags) != -1)
fcntl              83 lib/cloexec.c    return fcntl (fd, F_DUPFD_CLOEXEC, 0);
fcntl             177 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             138 lib/fcntl.in.h _GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...));
fcntl             139 lib/fcntl.in.h _GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...));
fcntl             145 lib/fcntl.in.h _GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...));
fcntl             150 lib/fcntl.in.h _GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...));
fcntl             152 lib/fcntl.in.h _GL_CXXALIASWARN (fcntl);
fcntl             156 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            1189 src/callproc.c   fcntl (STDERR_FILENO, F_SETFL, O_NONBLOCK);
fcntl            1599 src/emacs.c    	      || (fcntl (STDIN_FILENO, F_DUPFD_CLOEXEC, STDOUT_FILENO)
fcntl            1823 src/emacs.c                    fcntl (daemon_pipe[0], F_SETFD, 0);
fcntl            1824 src/emacs.c                    fcntl (daemon_pipe[1], F_SETFD, 0);
fcntl            1842 src/emacs.c                fcntl (daemon_pipe[1], F_SETFD, FD_CLOEXEC);
fcntl            7581 src/keyboard.c   fcntl (fileno (tty->input), F_SETFL, O_NONBLOCK);
fcntl            7613 src/keyboard.c   fcntl (fileno (tty->input), F_SETFL, 0);
fcntl            6924 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             198 src/process.c      fcntl (fd, F_SETFD, FD_CLOEXEC);
fcntl             875 src/process.c  	    fcntl (fd, F_SETFD, FD_CLOEXEC);
fcntl            2193 src/process.c        fcntl (inchannel, F_SETPIPE_SZ, read_process_output_max);
fcntl            2216 src/process.c    fcntl (inchannel, F_SETFL, O_NONBLOCK);
fcntl            2217 src/process.c    fcntl (outchannel, F_SETFL, O_NONBLOCK);
fcntl            2337 src/process.c        fcntl (pty_fd, F_SETFL, O_NONBLOCK);
fcntl            2430 src/process.c    fcntl (inchannel, F_SETFL, O_NONBLOCK);
fcntl            2431 src/process.c    fcntl (outchannel, F_SETFL, O_NONBLOCK);
fcntl            3450 src/process.c  	  ret = fcntl (s, F_SETFL, O_NONBLOCK);
fcntl            3678 src/process.c    fcntl (inch, F_SETFL, O_NONBLOCK);
fcntl            5023 src/process.c    fcntl (s, F_SETFL, O_NONBLOCK);
fcntl            7355 src/process.c    if (fcntl (fds[0], F_SETFL, O_NONBLOCK) != 0)
fcntl            7357 src/process.c    if (fcntl (fds[1], F_SETFL, O_NONBLOCK) != 0)
fcntl             787 src/sysdep.c     old_fcntl_flags[fd] = fcntl (fd, F_GETFL, 0) & ~FASYNC;
fcntl             788 src/sysdep.c     fcntl (fd, F_SETFL, old_fcntl_flags[fd] | FASYNC);
fcntl             799 src/sysdep.c     fcntl (fd, F_SETFL, old_fcntl_flags[fd]);
fcntl            1292 src/sysdep.c           fcntl (fileno (tty_out->input), F_GETOWN, 0);
fcntl            1293 src/sysdep.c         fcntl (fileno (tty_out->input), F_SETOWN, getpid ());
fcntl            1299 src/sysdep.c   	  fcntl (gpm_fd, F_SETOWN, getpid ());
fcntl            1300 src/sysdep.c   	  fcntl (gpm_fd, F_SETFL, fcntl (gpm_fd, F_GETFL, 0) | O_NONBLOCK);
fcntl            1537 src/sysdep.c         fcntl (fileno (tty_out->input), F_SETOWN,
fcntl            1541 src/sysdep.c     fcntl (fileno (tty_out->input), F_SETFL,
fcntl            1542 src/sysdep.c            fcntl (fileno (tty_out->input), F_GETFL, 0) & ~O_NONBLOCK);
fcntl            30300 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);