HomeSort by relevance Sort by last modified time
    Searched refs:dupfd (Results 1 - 3 of 3) sorted by null

  /external/bison/lib/
dup2.c 121 dupfd (int fd, int desired_fd) function
128 int r = dupfd (fd, desired_fd);
151 result = dupfd (fd, desired_fd);
fcntl.c 50 dupfd (int oldfd, int newfd, int flags) function
181 result = dupfd (fd, target, 0);
222 result = dupfd (fd, target, O_CLOEXEC);
  /external/openssh/
misc.c 721 int nullfd, dupfd; local
723 if ((nullfd = dupfd = open(_PATH_DEVNULL, O_RDWR)) == -1) {
728 while (++dupfd <= 2) {
730 if (fcntl(dupfd, F_GETFL, 0) >= 0)
732 if (dup2(nullfd, dupfd) == -1) {

Completed in 75 milliseconds