Lines Matching refs:errfd
1688 ppp_safe_fork(int infd, int outfd, int errfd) in ppp_safe_fork() argument
1730 if (errfd == 0 || errfd == 1) in ppp_safe_fork()
1731 errfd = dup(errfd); in ppp_safe_fork()
1740 if (errfd != 2) in ppp_safe_fork()
1741 dup2(errfd, 2); in ppp_safe_fork()
1755 if (errfd != 2) in ppp_safe_fork()
1756 close(errfd); in ppp_safe_fork()
1819 int errfd; in device_script() local
1823 errfd = log_to_fd; in device_script()
1825 errfd = open(PPP_PATH_CONNERRS, O_WRONLY | O_APPEND | O_CREAT, 0600); in device_script()
1826 if (errfd == -1) { in device_script()
1833 pid = ppp_safe_fork(in, out, errfd); in device_script()
1836 close(errfd); in device_script()