/external/linux-tools-perf/perf-3.12.0/tools/perf/util/ |
D | run-command.c | 21 int fdin[2], fdout[2], fderr[2]; in start_command() local 42 if (pipe(fdout) < 0) { in start_command() 49 cmd->out = fdout[0]; in start_command() 60 close_pair(fdout); in start_command() 93 dup2(fdout[1], 1); in start_command() 94 close_pair(fdout); in start_command() 128 close_pair(fdout); in start_command() 144 close(fdout[1]); in start_command()
|
/external/e2fsprogs/lib/ext2fs/ |
D | qcow2.c | 129 static int qcow2_copy_data(int fdin, int fdout, ext2_off64_t off_in, in qcow2_copy_data() argument 136 if (ext2fs_llseek(fdout, off_out, SEEK_SET) < 0) in qcow2_copy_data() 146 size = write(fdout, buf, count); in qcow2_copy_data()
|
/external/libedit/src/ |
D | el.c | 96 int fdin, int fdout, int fderr) in el_init_fd() argument 110 el->el_outfd = fdout; in el_init_fd()
|
/external/valgrind/main/coregrind/m_syswrap/ |
D | syswrap-mips64-linux.c | 340 PRE_REG_READ4(long, "sys_tee", int, fdin, int, fdout, vki_size_t, len, in PRE() 350 fdout, vki_loff_t, sizeout, vki_size_t, len, int, flags); in PRE()
|
/external/fio/engines/ |
D | net.c | 253 static int splice_io_u(int fdin, int fdout, unsigned int len) in splice_io_u() argument 258 int ret = splice(fdin, NULL, fdout, NULL, len, 0); in splice_io_u()
|
/external/qemu/ |
D | qemu-char.c | 2510 int fdin, fdout; in qemu_chr_parse_compat() local 2513 if (sscanf(p, "%d,%d", &fdin, &fdout) != 2) { in qemu_chr_parse_compat() 2516 if (fdin < 0 || fdout < 0) { in qemu_chr_parse_compat() 2521 snprintf(temp, sizeof temp, "%d", fdout); in qemu_chr_parse_compat()
|
/external/compiler-rt/include/sanitizer/ |
D | linux_syscall_hooks.h | 1684 #define __sanitizer_syscall_pre_tee(fdin, fdout, len, flags) \ argument 1685 __sanitizer_syscall_pre_impl_tee((long)(fdin), (long)(fdout), (long)(len), \ 1687 #define __sanitizer_syscall_post_tee(res, fdin, fdout, len, flags) \ argument 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,
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_syscalls.inc | 2656 PRE_SYSCALL(tee)(long fdin, long fdout, long len, long flags) {} 2658 POST_SYSCALL(tee)(long res, long fdin, long fdout, long len, long flags) {}
|