/freebsd/tools/test/stress2/testcases/mmap/ |
H A D | mmap.c | 101 int fdin, fdout; in test() local 109 if ((fdin = open(INPUTFILE, O_RDONLY)) < 0) in test() 115 if (fstat(fdin, &statbuf) < 0) in test() 125 if ((src = mmap(0, statbuf.st_size, PROT_READ, MAP_SHARED, fdin, 0)) == in test() 137 close(fdin); in test()
|
/freebsd/tools/test/stress2/misc/ |
H A D | nfs12.sh | 96 int fdin, fdout; 104 if ((fdin = open(INPUTFILE, O_RDONLY)) < 0) 110 if (fstat(fdin, &statbuf) < 0) 120 if ((src = mmap(0, statbuf.st_size, PROT_READ, MAP_SHARED, fdin, 0)) == 132 close(fdin);
|
H A D | vunref.sh | 139 int fdin, fdout; 147 if ((fdin = open(INPUTFILE, O_RDONLY)) < 0) 153 if (fstat(fdin, &statbuf) < 0) 163 if ((src = mmap(0, statbuf.st_size, PROT_READ, MAP_SHARED, fdin, 0)) == 175 close(fdin);
|
/freebsd/contrib/libedit/ |
H A D | el.c | 72 int fdin, int fdout, int fderr, int flags) in el_init_internal() argument 83 el->el_infd = fdin; in el_init_internal() 122 int fdin, int fdout, int fderr) in el_init_fd() argument 124 return el_init_internal(prog, fin, fout, ferr, fdin, fdout, fderr, 0); in el_init_fd()
|
/freebsd/crypto/heimdal/appl/rcp/ |
H A D | rcp.c | 54 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) in do_cmd() argument 787 *fdin = pout[0]; in do_cmd()
|
/freebsd/contrib/ntp/sntp/libopts/ |
H A D | makeshell.c | 192 emit_var_text(char const * prog, char const * var, int fdin) in emit_var_text() argument 194 FILE * fp = fdopen(fdin, "r" FOPEN_BINARY_FLAG); in emit_var_text()
|
H A D | proto.h | 263 emit_var_text(char const * prog, char const * var, int fdin);
|
/freebsd/crypto/openssh/ |
H A D | scp.c | 282 char *cmd, int *fdin, int *fdout, pid_t *pid) in do_cmd() argument 362 *fdin = pout[0]; in do_cmd() 365 *fdin = sv[1]; in do_cmd() 382 int fdin, int fdout) in do_cmd2() argument 399 if (dup2(fdin, 0) == -1) in do_cmd2()
|
H A D | session.c | 2255 int fdin, int fdout, int fderr, int ignore_fderr, int is_tty) in session_set_fds() argument 2264 fdout, fdin, fderr, in session_set_fds()
|
/freebsd/contrib/llvm-project/compiler-rt/include/sanitizer/ |
H A D | linux_syscall_hooks.h | 1692 #define __sanitizer_syscall_pre_tee(fdin, fdout, len, flags) \ argument 1693 __sanitizer_syscall_pre_impl_tee((long)(fdin), (long)(fdout), (long)(len), \ 1695 #define __sanitizer_syscall_post_tee(res, fdin, fdout, len, flags) \ argument 1696 __sanitizer_syscall_post_impl_tee(res, (long)(fdin), (long)(fdout), \ 2991 void __sanitizer_syscall_pre_impl_tee(long fdin, long fdout, long len, 2993 void __sanitizer_syscall_post_impl_tee(long res, long fdin, long fdout,
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_common_syscalls.inc | 2930 PRE_SYSCALL(tee)(long fdin, long fdout, long len, long flags) {} 2932 POST_SYSCALL(tee)(long res, long fdin, long fdout, long len, long flags) {}
|