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

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/curl-7.23.1/docs/examples/
H A Dsendrecv.c33 fd_set infd, outfd, errfd; local
41 FD_ZERO(&errfd);
43 FD_SET(sockfd, &errfd); /* always check for error */
55 res = select(sockfd + 1, &infd, &outfd, &errfd, &tv);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/samba-3.0.13/source/stf/
H A Dcomfychair.py223 errfd = os.open('%d.err' % pid, openmode, 0666)
224 os.dup2(errfd, 2)
225 os.close(errfd)
/netgear-WNDR4500-V1.0.1.40_1.0.68/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-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp/pppd/
H A Dmain.c1450 int errfd; local
1489 errfd = dup(log_to_fd);
1491 errfd = open(_PATH_CONNERRS, O_WRONLY | O_APPEND | O_CREAT, 0600);
1508 if (errfd >= 0) {
1509 dup2(errfd, 2);
1510 close(errfd);

Completed in 187 milliseconds