Searched refs:fdout (Results 1 - 10 of 10) sorted by relevance

/freebsd-11-stable/sys/dev/fdc/
H A Dfdcvar.h53 int fdout; /* mirror of the w/o digital output reg */ member in struct:fdc_data
H A Dfdc.c662 fdout_wr(fdc, fdc->fdout & ~(FDO_FRST|FDO_FDMAEN));
665 fdout_wr(fdc, fdc->fdout & ~FDO_FDMAEN);
668 fdout_wr(fdc, fdc->fdout);
774 fdc->fdout &= ~FDO_FDSEL;
775 fdc->fdout |= FDO_FDMAEN | FDO_FRST | fd->fdsu;
776 fdout_wr(fdc, fdc->fdout);
819 fdc->fdout |= (FDO_MOEN0 << fd->fdsu);
824 fdc->fdout &= ~(FDO_MOEN0 << fd->fdsu);
826 fdout_wr(fdc, fdc->fdout);
2053 /* reset controller, turn motor off, clear fdout mirro
[all...]
/freebsd-11-stable/contrib/atf/atf-c/detail/
H A Dfs.c220 do_mkstemp(char *tmpl, int *fdout) argument
226 *fdout = mkstemp(tmpl);
227 if (*fdout == -1)
821 atf_fs_mkstemp(atf_fs_path_t *p, int *fdout) argument
841 *fdout = fd;
/freebsd-11-stable/usr.bin/xlint/xlint/
H A Dxlint.c714 runchild(const char *path, char *const *args, const char *crfn, int fdout) argument
740 if (fdout != -1) {
741 dup2(fdout, STDOUT_FILENO);
742 close(fdout);
/freebsd-11-stable/usr.bin/gzip/
H A Dunlz.c323 lz_create(struct lz_decoder *lz, int fin, int fdout, int dict_size) argument
331 lz->fout = fdopen(dup(fdout), "w");
542 lz_decode(int fin, int fdout, unsigned dict_size, off_t *insize) argument
547 if (lz_create(&lz, fin, fdout, dict_size) == -1)
/freebsd-11-stable/crypto/openssh/
H A Dscp.c123 int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout);
124 int do_cmd2(char *host, char *remuser, char *cmd, int fdin, int fdout);
231 do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout) argument
290 *fdout = pin[1];
305 do_cmd2(char *host, char *remuser, char *cmd, int fdin, int fdout) argument
320 dup2(fdout, 1);
H A Dsession.c464 * handle the case that fdin and fdout are the same.
481 int fdout, ptyfd, ttyfd, ptymaster; local
496 if ((fdout = dup(ptyfd)) < 0) {
507 close(fdout);
515 close(fdout);
523 close(fdout);
579 session_set_fds(s, ptyfd, fdout, -1, 1, 1);
2134 session_set_fds(Session *s, int fdin, int fdout, int fderr, int ignore_fderr, argument
2144 fdout, fdin, fderr,
/freebsd-11-stable/crypto/heimdal/appl/rcp/
H A Drcp.c54 int do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout);
714 do_cmd(char *host, char *remuser, char *cmd, int *fdin, int *fdout) argument
785 *fdout = pin[1];
/freebsd-11-stable/lib/libedit/
H A Del.c75 int fdin, int fdout, int fderr)
89 el->el_outfd = fdout;
74 el_init_fd(const char *prog, FILE *fin, FILE *fout, FILE *ferr, int fdin, int fdout, int fderr) argument
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h1683 #define __sanitizer_syscall_pre_tee(fdin, fdout, len, flags) \
1684 __sanitizer_syscall_pre_impl_tee((long)(fdin), (long)(fdout), (long)(len), \
1686 #define __sanitizer_syscall_post_tee(res, fdin, fdout, len, flags) \
1687 __sanitizer_syscall_post_impl_tee(res, (long)(fdin), (long)(fdout), \
2968 void __sanitizer_syscall_pre_impl_tee(long fdin, long fdout, long len,
2970 void __sanitizer_syscall_post_impl_tee(long res, long fdin, long fdout,

Completed in 205 milliseconds