HomeSort by relevance Sort by last modified time
    Searched refs:dup2 (Results 51 - 75 of 276) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/qemu/slirp/
misc.c 334 dup2(s, 0);
335 dup2(s, 1);
336 dup2(s, 2);
882 dup2(fd0[1], 0);
883 dup2(fd0[1], 1);
884 dup2(fd[1], 2);
  /external/qemu/slirp-android/
misc.c 300 dup2(s, 0);
301 dup2(s, 1);
302 dup2(s, 2);
848 dup2(fd0[1], 0);
849 dup2(fd0[1], 1);
850 dup2(fd[1], 2);
  /external/wpa_supplicant_8/src/utils/
os_unix.c 134 if (dup2(devnull, STDIN_FILENO) < 0) {
139 if (dup2(devnull, STDOUT_FILENO) < 0) {
144 if (dup2(devnull, STDERR_FILENO) < 0) {
  /bionic/libc/stdio/
freopen.c 138 if (dup2(f, wantfd) >= 0) {
  /external/bison/lib/
w32spawn.h 83 if (dup2 (tempfd, origfd) < 0)
84 error (EXIT_FAILURE, errno, _("cannot restore fd %d: dup2 failed"),
unistd.in.h 87 They also declare access(), chmod(), close(), dup(), dup2(), isatty(),
341 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html>. */
344 # define dup2 rpl_dup2
346 _GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd));
347 _GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd));
350 _GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd));
352 _GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd));
354 _GL_CXXALIASWARN (dup2);
356 # undef dup2
358 _GL_WARN_ON_USE (dup2, "dup2 is unportable -
    [all...]
fcntl.c 281 /* Use dup2 to reject invalid file descriptors. No way to
283 if (0 <= dup2 (fd, fd))
295 using dup2 to move the duplicate onto the original, but that
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io_test/
kernel_proxy_mock.h 27 MOCK_METHOD2(dup2, int(int, int));
kernel_wrap_test.cc 142 TEST_F(KernelWrapTest, dup2) {
143 EXPECT_CALL(mock, dup2(DUMMY_FD, 234)).Times(1);
144 dup2(DUMMY_FD, 234);
  /external/valgrind/main/include/
pub_tool_libcfile.h 85 extern SysRes VG_(dup2) ( Int oldfd, Int newfd );
  /external/bison/darwin-lib/
unistd.h 88 They also declare access(), chmod(), close(), dup(), dup2(), isatty(),
653 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html>. */
656 # define dup2 rpl_dup2
658 _GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd));
659 _GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd));
662 _GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd));
664 _GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd));
666 _GL_CXXALIASWARN (dup2); variable
668 # undef dup2 macro
670 _GL_WARN_ON_USE (dup2, "dup2 is unportable -
    [all...]
  /external/bison/linux-lib/
unistd.h 88 They also declare access(), chmod(), close(), dup(), dup2(), isatty(),
653 <http://pubs.opengroup.org/onlinepubs/9699919799/functions/dup2.html>. */
656 # define dup2 rpl_dup2
658 _GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd));
659 _GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd));
662 _GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd));
664 _GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd));
666 _GL_CXXALIASWARN (dup2); variable
668 # undef dup2 macro
670 _GL_WARN_ON_USE (dup2, "dup2 is unportable -
    [all...]
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 103 dup2(captured_fd, STDERR_FILENO);
115 dup2(uncaptured_fd_, STDERR_FILENO);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_wrap_newlib.cc 56 OP(fdio, dup2); \
79 int WRAP(dup2)(int fd, int newfd) { function
  /external/e2fsprogs/misc/
logsave.c 189 dup2(fds[1],1); /* fds[1] replaces stdout */
190 dup2(fds[1],2); /* fds[1] replaces stderr */
  /external/openssh/
ssh-pkcs11-client.c 164 if ((dup2(pair[1], STDIN_FILENO) == -1) ||
165 (dup2(pair[1], STDOUT_FILENO) == -1)) {
166 fprintf(stderr, "dup2: %s\n", strerror(errno));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
posixfile.py 15 f.dup2(fd)
107 def dup2(self, fd): member in class:_posixfile_
113 posix.dup2(self._file_.fileno(), fd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
posixfile.py 15 f.dup2(fd)
107 def dup2(self, fd): member in class:_posixfile_
113 posix.dup2(self._file_.fileno(), fd)
  /external/libppp/src/
exec.c 332 dup2(fids[1], STDIN_FILENO);
333 dup2(fids[1], STDOUT_FILENO);
334 dup2(fids[1], STDERR_FILENO);
  /system/core/adb/
services.c 227 dup2(pts, 0);
228 dup2(pts, 1);
229 dup2(pts, 2);
  /system/core/init/
util.c 386 dup2(fd, 0);
387 dup2(fd, 1);
388 dup2(fd, 2);
  /bionic/libc/include/
unistd.h 141 extern int dup2(int, int);
  /development/ndk/platforms/android-3/include/
unistd.h 133 extern int dup2(int, int);
  /development/ndk/platforms/android-8/include/
unistd.h 137 extern int dup2(int, int);
  /development/ndk/platforms/android-9/include/
unistd.h 140 extern int dup2(int, int);

Completed in 496 milliseconds

1 23 4 5 6 7 8 91011>>