Searched refs:fd_out (Results 1 - 8 of 8) sorted by relevance

/freebsd-10.0-release/usr.sbin/nandtool/
H A Dnand_readoob.c45 int fd = -1, fd_out = -1, ret = 0; local
60 if ((fd_out = open(out, O_WRONLY | O_CREAT)) == -1) {
96 if (fd_out != -1)
97 write(fd_out, buf, chip_params.oob_size);
102 close(fd_out);
/freebsd-10.0-release/usr.sbin/ppp/
H A Dexec.c74 int fd_out; /* output descriptor */ member in struct:execdevice
90 if (dev->fd_out != -1)
91 close(dev->fd_out);
111 if (dev->fd_out >= 0) {
112 *auxfd = dev->fd_out;
127 if (dev->fd_out >= 0) {
128 if (w && FD_ISSET(dev->fd_out, w)) {
129 FD_CLR(dev->fd_out, w);
130 log_Printf(LogTIMER, "%s: fdunset(w) %d\n", p->link.name, dev->fd_out);
133 if (e && FD_ISSET(dev->fd_out,
[all...]
H A Dprompt.h42 int fd_in, fd_out; member in struct:prompt
44 FILE *Term; /* sits on top of fd_out */
H A Dprompt.c333 p->fd_out = STDOUT_FILENO;
342 p->fd_in = p->fd_out = fd;
367 if (p->fd_out != p->fd_in)
368 close(p->fd_out);
H A Dcommand.c660 fd = arg->prompt->fd_out;
/freebsd-10.0-release/libexec/atrun/
H A Datrun.c128 int fd_out, fd_in; local
257 if((fd_out=open(filename,
261 write_string(fd_out, "Subject: Output from your job ");
262 write_string(fd_out, filename);
263 write_string(fd_out, "\n\n");
264 fstat(fd_out, &buf);
290 if (dup(fd_out) != STDOUT_FILENO)
293 if (dup(fd_out) != STDERR_FILENO)
297 close(fd_out);
344 close(fd_out);
[all...]
/freebsd-10.0-release/crypto/openssh/
H A Dsftp-client.c70 int fd_out; member in struct:sftp_conn
114 if (atomiciov6(writev, conn->fd_out, iov, 2,
162 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
178 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
333 do_init(int fd_in, int fd_out, u_int transfer_buflen, u_int num_requests, argument
342 ret->fd_out = fd_out;
H A Dpacket.c225 packet_set_connection(int fd_in, int fd_out) argument
234 active_state->connection_out = fd_out;

Completed in 95 milliseconds