dup3               44 maint/gnulib/lib/dup3.c         int result = dup3 (oldfd, newfd, flags);
dup3              534 maint/gnulib/lib/unistd.in.h _GL_FUNCDECL_RPL (dup3, int, (int oldfd, int newfd, int flags));
dup3              535 maint/gnulib/lib/unistd.in.h _GL_CXXALIAS_RPL (dup3, int, (int oldfd, int newfd, int flags));
dup3              537 maint/gnulib/lib/unistd.in.h _GL_FUNCDECL_SYS (dup3, int, (int oldfd, int newfd, int flags));
dup3              538 maint/gnulib/lib/unistd.in.h _GL_CXXALIAS_SYS (dup3, int, (int oldfd, int newfd, int flags));
dup3              540 maint/gnulib/lib/unistd.in.h _GL_CXXALIASWARN (dup3);
dup3              544 maint/gnulib/lib/unistd.in.h _GL_WARN_ON_USE (dup3, "dup3 is unportable - "
dup3               25 maint/gnulib/tests/test-dup3.c SIGNATURE_CHECK (dup3, int, (int, int, int));
dup3              113 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd, fd, o_flags) == -1);
dup3              119 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd + 1, fd + 2, o_flags) == -1);
dup3              123 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd + 1, fd, o_flags) == -1);
dup3              129 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd, -2, o_flags) == -1);
dup3              133 maint/gnulib/tests/test-dup3.c           ASSERT (dup3 (fd, 255, 0) == 255);
dup3              134 maint/gnulib/tests/test-dup3.c           ASSERT (dup3 (fd, 256, 0) == 256);
dup3              138 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd, bad_fd - 1, 0) == bad_fd - 1);
dup3              141 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd, bad_fd, o_flags) == -1);
dup3              145 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd, fd + 2, o_flags) == fd + 2);
dup3              156 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd + 1, fd, o_flags) == fd);
dup3              159 maint/gnulib/tests/test-dup3.c       ASSERT (dup3 (fd + 2, fd, o_flags) == fd);
dup3              101 maint/gnulib/tests/test-fchdir.c           ASSERT (dup3 (fd, new_fd, 0) == new_fd);
dup3              102 maint/gnulib/tests/test-fchdir.c           ASSERT (dup3 (new_fd, fd, 0) == fd);
dup3               52 maint/gnulib/tests/test-unistd-c++.cc SIGNATURE_CHECK (GNULIB_NAMESPACE::dup3, int, (int, int, int));