Searched refs:fd_in (Results 1 - 7 of 7) sorted by relevance

/macosx-10.9.5/Heimdal-323.92.1/lib/krb5/
H A Dstore_fd.c89 krb5_storage_from_fd(krb5_socket_t fd_in) argument
96 if (_get_osfhandle(fd_in) != -1) {
97 fd = dup(fd_in);
99 fd = _open_osfhandle(fd_in, 0);
105 fd = dup(fd_in);
/macosx-10.9.5/system_cmds-597.90.1/atrun.tproj/
H A Datrun.c124 int fd_out, fd_in; local
206 if ((fd_in = dup(fileno(stream))) <0)
209 if (fstat(fd_in, &buf) == -1)
227 if ((fflags = fcntl(fd_in, F_GETFD)) <0)
230 fcntl(fd_in, F_SETFD, fflags & ~FD_CLOEXEC);
287 if (lseek(fd_in, (off_t) 0, SEEK_SET) < 0)
290 if (dup(fd_in) != STDIN_FILENO)
299 close(fd_in);
346 close(fd_in);
/macosx-10.9.5/system_cmds-597.90.1/system_cmds-597.1.1/atrun.tproj/
H A Datrun.c124 int fd_out, fd_in; local
206 if ((fd_in = dup(fileno(stream))) <0)
209 if (fstat(fd_in, &buf) == -1)
227 if ((fflags = fcntl(fd_in, F_GETFD)) <0)
230 fcntl(fd_in, F_SETFD, fflags & ~FD_CLOEXEC);
287 if (lseek(fd_in, (off_t) 0, SEEK_SET) < 0)
290 if (dup(fd_in) != STDIN_FILENO)
299 close(fd_in);
346 close(fd_in);
/macosx-10.9.5/emacs-92/emacs/src/
H A Dunexcw.c257 int fd_in; local
274 fd_in = open (infile, O_RDONLY | O_BINARY);
275 assert (fd_in >= 0);
281 ret = read (fd_in, buffer, sizeof (buffer));
292 ret = close (fd_in);
/macosx-10.9.5/OpenSSH-186/openssh/
H A Dsftp-client.c69 int fd_in; member in struct:sftp_conn
128 if (atomicio6(read, conn->fd_in, buffer_ptr(m), 4,
141 if (atomicio6(read, conn->fd_in, buffer_ptr(m), msg_len,
333 do_init(int fd_in, int fd_out, u_int transfer_buflen, u_int num_requests, argument
341 ret->fd_in = fd_in;
H A Dpacket.c216 packet_set_connection(int fd_in, int fd_out) argument
224 active_state->connection_in = fd_in;
/macosx-10.9.5/vim-53/src/
H A Dfileio.c6541 int fd_in; local
6670 fd_in = mch_open((char *)from, O_RDONLY|O_EXTRA, 0);
6671 if (fd_in == -1)
6684 close(fd_in);
6695 close(fd_in);
6702 while ((n = vim_read(fd_in, buffer, BUFSIZE)) > 0)
6710 close(fd_in);

Completed in 116 milliseconds