Lines Matching defs:devnull
2620 int devnull, ret = 0;
2622 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
2627 if ((do_stdin && dup2(devnull, STDIN_FILENO) == -1) ||
2628 (do_stdout && dup2(devnull, STDOUT_FILENO) == -1) ||
2629 (do_stderr && dup2(devnull, STDERR_FILENO) == -1)) {
2633 if (devnull > STDERR_FILENO)
2634 close(devnull);
2654 int fd, devnull, p[2], i;
2739 if ((devnull = open(_PATH_DEVNULL, O_RDWR)) == -1) {
2744 if (dup2(devnull, STDIN_FILENO) == -1) {
2754 fd = devnull;