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

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Drun-command.c21 int fdin[2], fdout[2], fderr[2]; local
42 if (pipe(fdout) < 0) {
49 cmd->out = fdout[0];
60 close_pair(fdout);
93 dup2(fdout[1], 1);
94 close_pair(fdout);
128 close_pair(fdout);
144 close(fdout[1]);
/external/e2fsprogs/lib/ext2fs/
H A Dqcow2.c129 static int qcow2_copy_data(int fdin, int fdout, ext2_off64_t off_in, argument
136 if (ext2fs_llseek(fdout, off_out, SEEK_SET) < 0)
146 size = write(fdout, buf, count);
/external/libedit/src/
H A Del.c96 int fdin, int fdout, int fderr)
110 el->el_outfd = fdout;
95 el_init_fd(const char *prog, FILE *fin, FILE *fout, FILE *ferr, int fdin, int fdout, int fderr) argument
/external/valgrind/main/coregrind/m_syswrap/
H A Dsyswrap-mips64-linux.c340 PRE_REG_READ4(long, "sys_tee", int, fdin, int, fdout, vki_size_t, len,
350 fdout, vki_loff_t, sizeout, vki_size_t, len, int, flags);
/external/qemu/
H A Dqemu-char.c737 int fd_out = qemu_opt_get_number(opts, "fdout",-1);
2510 int fdin, fdout; local
2513 if (sscanf(p, "%d,%d", &fdin, &fdout) != 2) {
2516 if (fdin < 0 || fdout < 0) {
2521 snprintf(temp, sizeof temp, "%d", fdout);
2522 qemu_opt_set(opts, "fdout", temp);
/external/fio/engines/
H A Dnet.c253 static int splice_io_u(int fdin, int fdout, unsigned int len) argument
258 int ret = splice(fdin, NULL, fdout, NULL, len, 0);
/external/compiler-rt/include/sanitizer/
H A Dlinux_syscall_hooks.h1684 #define __sanitizer_syscall_pre_tee(fdin, fdout, len, flags) \
1685 __sanitizer_syscall_pre_impl_tee((long)(fdin), (long)(fdout), (long)(len), \
1687 #define __sanitizer_syscall_post_tee(res, fdin, fdout, len, flags) \
1688 __sanitizer_syscall_post_impl_tee(res, (long)(fdin), (long)(fdout), \
2962 void __sanitizer_syscall_pre_impl_tee(long fdin, long fdout, long len,
2964 void __sanitizer_syscall_post_impl_tee(long res, long fdin, long fdout,

Completed in 7236 milliseconds