Searched refs:errfd (Results 1 - 4 of 4) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dsendrecv.c32 fd_set infd, outfd, errfd; local
40 FD_ZERO(&errfd);
42 FD_SET(sockfd, &errfd); /* always check for error */
54 res = select(sockfd + 1, &infd, &outfd, &errfd, &tv);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/samba-3.0.25b/source/stf/
H A Dcomfychair.py223 errfd = os.open('%d.err' % pid, openmode, 0666)
224 os.dup2(errfd, 2)
225 os.close(errfd)
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/ppp-2.4.4/pppd/
H A Dmain.c1639 safe_fork(int infd, int outfd, int errfd) argument
1675 /* make sure infd, outfd and errfd won't get tromped on below */
1680 if (errfd == 0 || errfd == 1)
1681 errfd = dup(errfd);
1688 if (errfd != 2)
1689 dup2(errfd, 2);
1704 if (errfd != 2)
1705 close(errfd);
1728 int errfd; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/src/router/ppp/pppd/
H A Dmain.c1345 int errfd; local
1384 errfd = dup(log_to_fd);
1386 errfd = open(_PATH_CONNERRS, O_WRONLY | O_APPEND | O_CREAT, 0600);
1403 if (errfd >= 0) {
1404 dup2(errfd, 2);
1405 close(errfd);

Completed in 79 milliseconds