HomeSort by: relevance | last modified time | path
    Searched refs:F_GETFD (Results 1 - 25 of 129) sorted by relevancy

1 2 3 4 5 6

  /src/external/gpl3/binutils/dist/libiberty/
filedescriptor.c 42 #elif defined(F_GETFD)
43 return fcntl (fd, F_GETFD) >= 0;
  /src/external/gpl3/binutils.old/dist/libiberty/
filedescriptor.c 42 #elif defined(F_GETFD)
43 return fcntl (fd, F_GETFD) >= 0;
  /src/external/gpl3/gcc/dist/libiberty/
filedescriptor.c 42 #elif defined(F_GETFD)
43 return fcntl (fd, F_GETFD) >= 0;
  /src/external/gpl3/gcc.old/dist/libiberty/
filedescriptor.c 42 #elif defined(F_GETFD)
43 return fcntl (fd, F_GETFD) >= 0;
  /src/external/gpl3/gdb.old/dist/libiberty/
filedescriptor.c 42 #elif defined(F_GETFD)
43 return fcntl (fd, F_GETFD) >= 0;
  /src/external/gpl3/gdb/dist/libiberty/
filedescriptor.c 42 #elif defined(F_GETFD)
43 return fcntl (fd, F_GETFD) >= 0;
  /src/tests/lib/libc/sys/
t_socketpair.c 84 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOEXEC) != 0);
85 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOEXEC) != 0);
87 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOEXEC) == 0);
88 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOEXEC) == 0);
92 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOFORK) != 0);
93 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOFORK) != 0);
95 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOFORK) == 0);
96 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOFORK) == 0);
t_pipe2.c 72 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOEXEC) != 0);
73 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOEXEC) != 0);
75 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOEXEC) == 0);
76 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOEXEC) == 0);
80 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOFORK) != 0);
81 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOFORK) != 0);
83 ATF_REQUIRE((fcntl(fd[0], F_GETFD) & FD_CLOFORK) == 0);
84 ATF_REQUIRE((fcntl(fd[1], F_GETFD) & FD_CLOFORK) == 0);
t_eventfd.c 795 ATF_REQUIRE((fcntl(efd, F_GETFD) & FD_CLOEXEC) == 0);
808 ATF_REQUIRE((fcntl(efd, F_GETFD) & FD_CLOEXEC) != 0);
810 ATF_REQUIRE((fcntl(efd, F_GETFD) & FD_CLOEXEC) == 0);
812 ATF_REQUIRE((fcntl(efd, F_GETFD) & FD_CLOEXEC) != 0);
  /src/external/ibm-public/postfix/dist/src/util/
close_on_exec.c 55 if ((flags = fcntl(fd, F_GETFD, 0)) < 0)
dup2_pass_on_exec.c 51 DO((res = fcntl(3, F_GETFD, 0)));
  /src/external/gpl3/gdb/dist/gnulib/import/
cloexec.c 43 int flags = fcntl (desc, F_GETFD, 0);
fcntl.c 196 F_GETFD - ARG need not be present. If successful, return a
228 case F_GETFD:
245 } /* F_GETFD */
285 #ifdef F_GETFD /* POSIX */
286 case F_GETFD:
462 int flags = fcntl (fd, F_GETFD);
533 int flags = fcntl (result, F_GETFD);
578 case F_GETFD:
fcntl.in.h 258 #ifndef F_GETFD
259 # define F_GETFD 2
  /src/external/gpl3/gdb.old/dist/gnulib/import/
cloexec.c 43 int flags = fcntl (desc, F_GETFD, 0);
fcntl.c 196 F_GETFD - ARG need not be present. If successful, return a
228 case F_GETFD:
245 } /* F_GETFD */
285 #ifdef F_GETFD /* POSIX */
286 case F_GETFD:
462 int flags = fcntl (fd, F_GETFD);
533 int flags = fcntl (result, F_GETFD);
578 case F_GETFD:
fcntl.in.h 258 #ifndef F_GETFD
259 # define F_GETFD 2
  /src/external/public-domain/xz/dist/src/common/
tuklib_open_stdxxx.c 32 if (fcntl(i, F_GETFD) == -1 && errno == EBADF) {
  /src/crypto/external/bsd/heimdal/dist/lib/roken/
cloexec.c 46 ret = fcntl(fd, F_GETFD);
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/
fcntl.d 59 F_GETFD
103 enum F_GETFD = 1;
403 enum F_GETFD = 1;
447 enum F_GETFD = 1;
508 enum F_GETFD = 1;
574 enum F_GETFD = 1;
662 enum F_GETFD = 1;
707 enum F_GETFD = 1;
  /src/tests/kernel/
t_epoll.c 76 ATF_REQUIRE_MSG((fcntl(fd, F_GETFD) & FD_CLOEXEC) == 0,
80 ATF_REQUIRE_MSG((fcntl(fd, F_GETFD) & FD_CLOEXEC) != 0,
  /src/external/gpl3/gdb.old/dist/gdbsupport/
filestuff.cc 32 /* Define HAVE_F_GETFD if we plan to use F_GETFD. */
33 #define HAVE_F_GETFD F_GETFD
267 int old = fcntl (fd, F_GETFD, 0);
  /src/external/gpl3/gdb/dist/gdbsupport/
filestuff.cc 32 /* Define HAVE_F_GETFD if we plan to use F_GETFD. */
33 #define HAVE_F_GETFD F_GETFD
267 int old = fcntl (fd, F_GETFD, 0);
  /src/tests/lib/libc/ttyio/
t_ptm.c 188 ATF_CHECK_EQ(FD_CLOEXEC|FD_CLOFORK, fcntl(fdm, F_GETFD));
  /src/external/bsd/jemalloc.old/dist/src/
pages.c 633 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
644 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
653 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);

Completed in 23 milliseconds

1 2 3 4 5 6