HomeSort by relevance Sort by last modified time
    Searched refs:dup2 (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /cts/tools/dx-tests/src/dxc/junit/opcodes/dup2/jm/
T_dup2_1.java 17 package dxc.junit.opcodes.dup2.jm;
T_dup2_2.java 17 package dxc.junit.opcodes.dup2.jm;
T_dup2_3.java 17 package dxc.junit.opcodes.dup2.jm;
T_dup2_4.java 17 package dxc.junit.opcodes.dup2.jm;
T_dup2_5.java 17 package dxc.junit.opcodes.dup2.jm;
T_dup2_6.java 17 package dxc.junit.opcodes.dup2.jm;
  /bionic/libc/arch-arm/syscalls/
dup2.S 5 .type dup2, #function
6 .globl dup2
10 dup2: label
  /bionic/libc/unistd/
daemon.c 46 if ( dup2( fd, 0 ) < 0 ||
47 dup2( fd, 1 ) < 0 ||
48 dup2( fd, 2 ) < 0 )
popen.c 98 (void)dup2(tpdes1, STDOUT_FILENO);
105 (void)dup2(pdes[0], STDIN_FILENO);
  /bionic/libc/arch-sh/syscalls/
dup2.S 5 .type dup2, @function
6 .globl dup2
9 dup2: label
  /bionic/libc/arch-x86/syscalls/
dup2.S 5 .type dup2, @function
6 .globl dup2
9 dup2: label
  /cts/tools/dx-tests/src/dxc/junit/opcodes/dup2/
Test_dup2.java 17 package dxc.junit.opcodes.dup2;
21 import dxc.junit.opcodes.dup2.jm.T_dup2_1;
22 import dxc.junit.opcodes.dup2.jm.T_dup2_3;
23 import dxc.junit.opcodes.dup2.jm.T_dup2_4;
24 import dxc.junit.opcodes.dup2.jm.T_dup2_6;
66 Class.forName("dxc.junit.opcodes.dup2.jm.T_dup2_2");
79 Class.forName("dxc.junit.opcodes.dup2.jm.T_dup2_5");
  /system/wlan/ti/sta_dk_4_0_4_32/CUDK/IPC/Linux/
proc_main.c 67 if( dup2( f->_fileno, 1 ) == -1 )
69 fprintf(f, "dup2(hfile, 1) failed: %d(%s)\n", errno, strerror(errno) );
71 if( dup2( f->_fileno, 2 ) == -1 )
73 fprintf(f, "dup2(hfile, 2) failed: %d(%s)\n", errno, strerror(errno) );
85 if( dup2( 1, hfile_output ) == -1 )
87 fprintf(stderr, "dup2(1, hfile_output) failed: %d(%s)\n", errno, strerror(errno) );
89 if( dup2( 2, hfile_output ) == -1 )
91 fprintf(stderr, "dup2(2, hfile_output) failed: %d(%s)\n", errno, strerror(errno) );
  /external/bison/lib/
subpipe.c 46 #if ! HAVE_DUP2 && ! defined dup2
48 # define dup2(f, t) (close (t), fcntl (f, F_DUPFD, t)) macro
135 dup2 (child_fd[0], STDIN_FILENO);
137 dup2 (child_fd[1], STDOUT_FILENO);
  /external/e2fsprogs/lib/
fpopen.c 102 dup2(fds[0], 0);
105 dup2(fds[1], 1);
107 dup2(fds[1], 2);
  /external/bison/djgpp/
subpipe.c 146 if (dup2(from_in_fd, STDOUT_FILENO) < 0)
190 if (dup2(from_out_fd, STDIN_FILENO) < 0)
206 if (dup2(to_in_fd, STDOUT_FILENO) < 0)
243 if (dup2(old_stdout, STDOUT_FILENO) < 0)
252 if (dup2(to_in_fd, STDIN_FILENO) < 0)
256 error(EXIT_FAILURE, -1, "dup2");
282 if (dup2(old_stdin, STDIN_FILENO) < 0)
  /external/qemu/android/utils/
debug.c 121 dup2(null_fd, out_fd);
122 dup2(null_fd, err_fd);
135 dup2(stdio_save_out_fd, out_fd);
136 dup2(stdio_save_err_fd, err_fd);
  /dalvik/dx/tests/107-verify-stack-ops/
run 34 oneop dup2
  /external/dropbear/
compat.c 181 (void)dup2(fd, STDIN_FILENO);
182 (void)dup2(fd, STDOUT_FILENO);
183 (void)dup2(fd, STDERR_FILENO);
  /external/protobuf/src/google/protobuf/testing/
googletest.cc 164 dup2(fd, 1);
179 dup2(fd, 2);
187 dup2(original_stdout_, 1);
202 dup2(original_stderr_, 2);
  /device/samsung/crespo/alsa-utils/alsactl/
init_utils_run.c 104 dup2(devnull, STDIN_FILENO);
106 dup2(devnull, STDOUT_FILENO);
108 dup2(devnull, STDERR_FILENO);
113 dup2(outpipe[WRITE_END], STDOUT_FILENO);
117 dup2(errpipe[WRITE_END], STDERR_FILENO);
  /external/clearsilver/util/
filter.c 114 dup2 (pi[0], 0);
121 dup2 (po[1], 1);
128 dup2 (pe[1], 2);
  /system/core/logwrapper/
logwrapper.c 164 dup2(child_ptty, 1);
165 dup2(child_ptty, 2);
  /external/e2fsprogs/lib/ss/
pager.c 88 if (dup2(filedes[0], 0) == -1)
  /libcore/luni/src/main/native/
java_lang_ProcessManager.cpp 214 dup2(stdinIn, 0);
215 dup2(stdoutOut, 1);
217 dup2(stdoutOut, 2);
219 dup2(stderrOut, 2);

Completed in 1416 milliseconds

1 2 3 4 5