Lines Matching refs:fd_out
74 int fd_out; /* output descriptor */ member
90 if (dev->fd_out != -1) in exec_Free()
91 close(dev->fd_out); in exec_Free()
111 if (dev->fd_out >= 0) { in exec_device2iov()
112 *auxfd = dev->fd_out; in exec_device2iov()
127 if (dev->fd_out >= 0) { in exec_RemoveFromSet()
128 if (w && FD_ISSET(dev->fd_out, w)) { in exec_RemoveFromSet()
129 FD_CLR(dev->fd_out, w); in exec_RemoveFromSet()
130 log_Printf(LogTIMER, "%s: fdunset(w) %d\n", p->link.name, dev->fd_out); in exec_RemoveFromSet()
133 if (e && FD_ISSET(dev->fd_out, e)) { in exec_RemoveFromSet()
134 FD_CLR(dev->fd_out, e); in exec_RemoveFromSet()
135 log_Printf(LogTIMER, "%s: fdunset(e) %d\n", p->link.name, dev->fd_out); in exec_RemoveFromSet()
147 int fd = dev->fd_out == -1 ? p->fd : dev->fd_out; in exec_Write()
188 dev->fd_out = *auxfd; in exec_iov2device()
191 dev->fd_out = -1; in exec_iov2device()
210 if (w && dev->fd_out >= 0) { in exec_UpdateSet()
211 FD_SET(dev->fd_out, w); in exec_UpdateSet()
212 log_Printf(LogTIMER, "%s: fdset(w) %d\n", p->link.name, dev->fd_out); in exec_UpdateSet()
217 if (e && dev->fd_out >= 0) { in exec_UpdateSet()
218 FD_SET(dev->fd_out, e); in exec_UpdateSet()
219 log_Printf(LogTIMER, "%s: fdset(e) %d\n", p->link.name, dev->fd_out); in exec_UpdateSet()
223 if (result && *n <= dev->fd_out) in exec_UpdateSet()
224 *n = dev->fd_out + 1; in exec_UpdateSet()
234 int result = dev->fd_out >= 0 && FD_ISSET(dev->fd_out, fdset); in exec_IsSet()
255 dev->fd_out = -1; in exec_Create()
391 dev->fd_out = dup(STDOUT_FILENO); in exec_Create()
397 dev->fd_out = -1; in exec_Create()