HomeSort by: relevance | last modified time | path
    Searched refs:fd_out (Results 1 - 25 of 41) sorted by relevancy

1 2

  /src/external/bsd/pkg_install/dist/lib/
gpgsig.c 105 int fd_in[2], fd_out[2], status; local
114 if (pipe(fd_out) == -1)
131 close(fd_out[0]);
133 if (dup2(fd_out[1], STDOUT_FILENO) == -1) {
139 close(fd_out[1]);
172 close(fd_out[1]);
174 while ((ret = read(fd_out[0], *sig + *sig_len,
183 close(fd_out[0]);
  /src/libexec/atrun/
atrun.c 155 int fd_out, fd_in; local
272 if ((fd_out = open(filename,
278 write_string(fd_out, "To: ");
279 write_string(fd_out, mailname);
280 write_string(fd_out, "\nSubject: Output from your job ");
281 write_string(fd_out, filename);
282 write_string(fd_out, "\n\n");
283 if (fstat(fd_out, &buf) == -1)
309 if (dup(fd_out) != STDOUT_FILENO)
312 if (dup(fd_out) != STDERR_FILENO
    [all...]
  /src/crypto/external/bsd/netpgp/dist/src/lib/
crypto.c 359 int fd_out; local
366 fd_out = pgp_setup_file_write(&output, outfile, allow_overwrite);
367 if (fd_out < 0) {
388 pgp_teardown_file_write(output, fd_out);
460 int fd_out; local
473 fd_out = pgp_setup_file_write(&parse->cbinfo.output, outfile,
475 if (fd_out < 0) {
497 fd_out = pgp_setup_file_write(&parse->cbinfo.output,
499 if (fd_out < 0) {
538 pgp_teardown_file_write(parse->cbinfo.output, fd_out);
    [all...]
signature.c 1038 int fd_out; local
1045 fd_out = 0;
1070 fd_out = open_output_file(&output, inname, outname,
1072 if (fd_out < 0) {
1081 pgp_teardown_file_write(output, fd_out);
1103 pgp_teardown_file_write(output, fd_out);
1112 pgp_teardown_file_write(output, fd_out);
1156 pgp_teardown_file_write(output, fd_out);
openssl_crypto.c 850 BIO *fd_out; local
852 fd_out = BIO_new_fd(fileno(stderr), BIO_NOCLOSE);
853 ERR_print_errors(fd_out);
  /src/external/mit/libuv/dist/src/win/
core.c 595 uv_os_fd_t fd_out; local
599 fd_out = (uv_os_fd_t)((uv_tcp_t*) handle)->socket;
603 fd_out = ((uv_pipe_t*) handle)->handle;
607 fd_out = ((uv_tty_t*) handle)->handle;
611 fd_out = (uv_os_fd_t)((uv_udp_t*) handle)->socket;
615 fd_out = (uv_os_fd_t)((uv_poll_t*) handle)->socket;
622 if (uv_is_closing(handle) || fd_out == INVALID_HANDLE_VALUE)
625 *fd = fd_out;
fs.c 2415 int fd_in = req->file.fd, fd_out = req->fs.info.fd_out; local
2445 n = _write(fd_out, buf, n);
3658 int uv_fs_sendfile(uv_loop_t* loop, uv_fs_t* req, uv_file fd_out,
3662 req->fs.info.fd_out = fd_out;
  /src/external/mit/libuv/dist/src/unix/
linux-syscalls.h 67 int fd_out,
linux-syscalls.c 226 int fd_out,
235 fd_out,
freebsd.c 280 int fd_out,
286 return copy_file_range(fd_in, off_in, fd_out, off_out, len, flags);
internal.h 453 int fd_out,
484 int fd_out,
core.c 813 int fd_out; local
819 fd_out = uv__stream_fd((uv_stream_t*) handle);
823 fd_out = ((uv_udp_t *) handle)->io_watcher.fd;
827 fd_out = ((uv_poll_t *) handle)->io_watcher.fd;
834 if (uv__is_closing(handle) || fd_out == -1)
837 *fd = fd_out;
  /src/external/gpl3/gcc/dist/libstdc++-v3/src/filesystem/
ops-common.h 384 copy_file_copy_file_range(int fd_in, int fd_out, size_t length) noexcept
398 bytes_copied = ::copy_file_range(fd_in, &off_in, fd_out, &off_out,
411 copy_file_sendfile(int fd_in, int fd_out, size_t length) noexcept
425 bytes_copied = ::sendfile(fd_out, fd_in, &offset, bytes_left);
431 ::lseek(fd_out, 0, SEEK_SET);
  /src/crypto/external/bsd/heimdal/dist/lib/base/
db.c 1172 open_file(const char *dbname, int for_write, int excl, int *fd_out, heim_error_t *error)
1178 if (fd_out)
1179 *fd_out = -1;
1194 if (fd_out == NULL) {
1199 *fd_out = _open_osfhandle((intptr_t) hFile, 0);
1200 if (*fd_out < 0) {
1223 if (fd_out)
1224 *fd_out = -1;
1239 if (fd_out == NULL) {
1253 *fd_out = fd
    [all...]
  /src/sys/compat/linux/common/
linux_file.c 1067 syscallarg(int) fd_out;
1073 int fd_in, fd_out; local
1101 fd_out = SCARG(uap, fd_out);
1107 error = fd_getvnode(fd_out, &fp_out);
1271 fd_putfile(fd_out);
  /src/external/bsd/libevent/dist/include/event2/
event.h 1382 event_base is copied into *base_out, the fd is copied into *fd_out, and so
1389 struct event_base **base_out, evutil_socket_t *fd_out, short *events_out,
  /src/external/bsd/ntp/dist/sntp/libevent/include/event2/
event.h 1383 event_base is copied into *base_out, the fd is copied into *fd_out, and so
1390 struct event_base **base_out, evutil_socket_t *fd_out, short *events_out,
  /src/external/gpl3/gdb.old/dist/gdb/
windows-nat.c 2558 int fd_inp = -1, fd_out = -1, fd_err = -1; local
2721 &fd_inp, &fd_out, &fd_err);
2731 && !(fd_inp >= 0 && fd_out >= 0 && fd_err >= 0))
2754 if (fd_out >= 0)
2755 si.hStdOutput = (HANDLE) _get_osfhandle (fd_out);
2825 if (fd_out >= 0)
2826 _close (fd_out);
  /src/external/gpl3/gdb/dist/gdb/
windows-nat.c 2561 int fd_inp = -1, fd_out = -1, fd_err = -1; local
2724 &fd_inp, &fd_out, &fd_err);
2734 && !(fd_inp >= 0 && fd_out >= 0 && fd_err >= 0))
2757 if (fd_out >= 0)
2758 si.hStdOutput = (HANDLE) _get_osfhandle (fd_out);
2828 if (fd_out >= 0)
2829 _close (fd_out);
  /src/external/mit/libuv/dist/include/uv/
win.h 629 int fd_out; \
  /src/external/bsd/dhcpcd/dist/src/
privsep.c 128 int fd_out = ctx->options & DHCPCD_DUMPLEASE ? local
183 (ctx->logfile == NULL && isatty(fd_out) == 1))
  /src/crypto/external/bsd/openssh/dist/
sftp-client.c 77 int fd_out; member in struct:sftp_conn
164 if (atomiciov6(writev, conn->fd_out, iov, 2, sftpio,
231 debug3("Sent message fd %d T:%u I:%u", conn->fd_out, code, id);
251 conn->fd_out, code, id, a->flags, a->perm);
441 sftp_init(int fd_in, int fd_out, u_int transfer_buflen, u_int num_requests,
452 ret->fd_out = fd_out;
  /src/sys/external/bsd/compiler_rt/dist/include/sanitizer/
linux_syscall_hooks.h 1668 #define __sanitizer_syscall_pre_splice(fd_in, off_in, fd_out, off_out, len, \
1671 (long)(fd_out), (long)(off_out), \
1673 #define __sanitizer_syscall_post_splice(res, fd_in, off_in, fd_out, off_out, \
1676 (long)(fd_out), (long)(off_out), \
2960 void __sanitizer_syscall_pre_impl_splice(long fd_in, long off_in, long fd_out,
2963 long fd_out, long off_out, long len,
  /src/external/gpl3/gcc/dist/libsanitizer/include/sanitizer/
linux_syscall_hooks.h 1676 #define __sanitizer_syscall_pre_splice(fd_in, off_in, fd_out, off_out, len, \
1679 (long)(fd_out), (long)(off_out), \
1681 #define __sanitizer_syscall_post_splice(res, fd_in, off_in, fd_out, off_out, \
1684 (long)(fd_out), (long)(off_out), \
2975 void __sanitizer_syscall_pre_impl_splice(long fd_in, long off_in, long fd_out,
2978 long fd_out, long off_out, long len,
  /src/external/gpl3/gcc.old/dist/libsanitizer/include/sanitizer/
linux_syscall_hooks.h 1676 #define __sanitizer_syscall_pre_splice(fd_in, off_in, fd_out, off_out, len, \
1679 (long)(fd_out), (long)(off_out), \
1681 #define __sanitizer_syscall_post_splice(res, fd_in, off_in, fd_out, off_out, \
1684 (long)(fd_out), (long)(off_out), \
2975 void __sanitizer_syscall_pre_impl_splice(long fd_in, long off_in, long fd_out,
2978 long fd_out, long off_out, long len,

Completed in 61 milliseconds

1 2