fcntl_flags       113 maint/gnulib/lib/accept4.c       int fcntl_flags;
fcntl_flags       115 maint/gnulib/lib/accept4.c       if ((fcntl_flags = fcntl (fd, F_GETFD, 0)) < 0
fcntl_flags       116 maint/gnulib/lib/accept4.c           || fcntl (fd, F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)
fcntl_flags       130 maint/gnulib/lib/accept4.c       int fcntl_flags;
fcntl_flags       132 maint/gnulib/lib/accept4.c       if ((fcntl_flags = fcntl (fd, F_GETFL, 0)) < 0
fcntl_flags       133 maint/gnulib/lib/accept4.c           || fcntl (fd, F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
fcntl_flags       138 maint/gnulib/lib/nonblocking.c   int fcntl_flags;
fcntl_flags       140 maint/gnulib/lib/nonblocking.c   fcntl_flags = fcntl (desc, F_GETFL, 0);
fcntl_flags       141 maint/gnulib/lib/nonblocking.c   if (fcntl_flags < 0)
fcntl_flags       143 maint/gnulib/lib/nonblocking.c   return (fcntl_flags & O_NONBLOCK) != 0;
fcntl_flags       149 maint/gnulib/lib/nonblocking.c   int fcntl_flags;
fcntl_flags       151 maint/gnulib/lib/nonblocking.c   fcntl_flags = fcntl (desc, F_GETFL, 0);
fcntl_flags       152 maint/gnulib/lib/nonblocking.c   if (fcntl_flags < 0)
fcntl_flags       154 maint/gnulib/lib/nonblocking.c   if (((fcntl_flags & O_NONBLOCK) != 0) == value)
fcntl_flags       157 maint/gnulib/lib/nonblocking.c     fcntl_flags |= O_NONBLOCK;
fcntl_flags       159 maint/gnulib/lib/nonblocking.c     fcntl_flags &= ~O_NONBLOCK;
fcntl_flags       160 maint/gnulib/lib/nonblocking.c   return fcntl (desc, F_SETFL, fcntl_flags);
fcntl_flags       249 maint/gnulib/lib/pipe-filter-gi.c     int fcntl_flags;
fcntl_flags       251 maint/gnulib/lib/pipe-filter-gi.c     if ((fcntl_flags = fcntl (filter->fd[1], F_GETFL, 0)) < 0
fcntl_flags       252 maint/gnulib/lib/pipe-filter-gi.c         || fcntl (filter->fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
fcntl_flags       253 maint/gnulib/lib/pipe-filter-gi.c         || (fcntl_flags = fcntl (filter->fd[0], F_GETFL, 0)) < 0
fcntl_flags       254 maint/gnulib/lib/pipe-filter-gi.c         || fcntl (filter->fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
fcntl_flags       411 maint/gnulib/lib/pipe-filter-ii.c       int fcntl_flags;
fcntl_flags       413 maint/gnulib/lib/pipe-filter-ii.c       if ((fcntl_flags = fcntl (fd[1], F_GETFL, 0)) < 0
fcntl_flags       414 maint/gnulib/lib/pipe-filter-ii.c           || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
fcntl_flags       415 maint/gnulib/lib/pipe-filter-ii.c           || (fcntl_flags = fcntl (fd[0], F_GETFL, 0)) < 0
fcntl_flags       416 maint/gnulib/lib/pipe-filter-ii.c           || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
fcntl_flags       118 maint/gnulib/lib/pipe2.c       int fcntl_flags;
fcntl_flags       120 maint/gnulib/lib/pipe2.c       if ((fcntl_flags = fcntl (fd[1], F_GETFL, 0)) < 0
fcntl_flags       121 maint/gnulib/lib/pipe2.c           || fcntl (fd[1], F_SETFL, fcntl_flags | O_NONBLOCK) == -1
fcntl_flags       122 maint/gnulib/lib/pipe2.c           || (fcntl_flags = fcntl (fd[0], F_GETFL, 0)) < 0
fcntl_flags       123 maint/gnulib/lib/pipe2.c           || fcntl (fd[0], F_SETFL, fcntl_flags | O_NONBLOCK) == -1)
fcntl_flags       129 maint/gnulib/lib/pipe2.c       int fcntl_flags;
fcntl_flags       131 maint/gnulib/lib/pipe2.c       if ((fcntl_flags = fcntl (fd[1], F_GETFD, 0)) < 0
fcntl_flags       132 maint/gnulib/lib/pipe2.c           || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1
fcntl_flags       133 maint/gnulib/lib/pipe2.c           || (fcntl_flags = fcntl (fd[0], F_GETFD, 0)) < 0
fcntl_flags       134 maint/gnulib/lib/pipe2.c           || fcntl (fd[0], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)