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

<<1112131415161718

  /prebuilts/misc/common/asm/
asm-commons-6.0.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
asm-commons-6.0.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
asm-commons-6.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/6.0/
asm-commons-6.0.jar 
  /prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/6.1.1/
asm-commons-6.1.1.jar 
  /system/netd/server/
TetherController.cpp 201 if (dup2(pipefd[0], STDIN_FILENO) != STDIN_FILENO) {
202 ALOGE("dup2 failed (%s)", strerror(errno));
  /bionic/tests/
gtest_main.cpp 690 dup2(pipefd[1], STDOUT_FILENO);
691 dup2(pipefd[1], STDERR_FILENO);
    [all...]
unistd_test.cpp 1028 // POSIX says of dup2:
1030 // [and] fildes is equal to fildes2 ... dup2() shall return
1037 ASSERT_EQ(fd, dup2(fd, fd));
1038 ASSERT_EQ(0, close(fd)); // Check that dup2 didn't close fd.
1042 ASSERT_EQ(-1, dup2(fd, fd));
    [all...]
  /bootable/recovery/
recovery.cpp 301 if (dup2(pipefd[1], STDOUT_FILENO) == -1) {
302 PLOG(ERROR) << "dup2 stdout failed";
304 if (dup2(pipefd[1], STDERR_FILENO) == -1) {
305 PLOG(ERROR) << "dup2 stderr failed";
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
edk2module.c     [all...]
  /external/strace/linux/alpha/
syscallent.h 120 [ 90] = { 2, TD, SEN(dup2), "dup2" },
  /external/strace/linux/bfin/
syscallent.h 93 [ 63] = { 2, TD, SEN(dup2), "dup2" },
  /external/strace/linux/microblaze/
syscallent.h 93 [ 63] = { 2, TD, SEN(dup2), "dup2" },
  /external/strace/linux/x32/
syscallent.h 34 [ 33] = { 2, TD, SEN(dup2), "dup2" },
  /frameworks/native/cmds/dumpstate/
utils.cpp 728 dup2(fd, fileno(redirect));
770 TEMP_FAILURE_RETRY(dup2(fd, fileno(redirect)));
    [all...]
  /external/python/cpython3/Lib/test/
test_subprocess.py     [all...]
  /external/selinux/libsemanage/src/
direct_api.c 831 retval = dup2(input_fd[PIPE_READ], STDIN_FILENO);
833 ERR(sh, "Unable to dup2 input pipe: %s\n", strerror(errno));
836 retval = dup2(output_fd[PIPE_WRITE], STDOUT_FILENO);
838 ERR(sh, "Unable to dup2 output pipe: %s\n", strerror(errno));
841 retval = dup2(err_fd[PIPE_WRITE], STDERR_FILENO);
843 ERR(sh, "Unable to dup2 error pipe: %s\n", strerror(errno));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
posixmodule.c 441 /* the special case of checking dup2. The target fd must be in a sensible range */
    [all...]
  /external/python/cpython2/Modules/
posixmodule.c 607 /* the special case of checking dup2. The target fd must be in a sensible range */
    [all...]
  /external/toybox/toys/pending/
fdisk.c 356 if(dup2(fd, dev_fd) != dev_fd) perror_exit("Can't dup2");
    [all...]
  /system/core/adb/
commandline.cpp     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_os.py 598 if hasattr(os, "dup2"):
599 self.check(os.dup2, 20)
  /external/annotation-tools/asmx/src/org/objectweb/asm/commons/
GeneratorAdapter.java 645 * Generates a DUP2 instruction.
647 public void dup2() { method in class:GeneratorAdapter
648 mv.visitInsn(Opcodes.DUP2);
    [all...]
  /external/proguard/src/proguard/evaluation/
Processor.java 220 stack.dup2();
    [all...]
  /external/python/cpython2/Lib/test/
test_os.py 675 @unittest.skipUnless(hasattr(os, 'dup2'), 'test needs os.dup2()')
677 self.check(os.dup2, 20)
    [all...]

Completed in 550 milliseconds

<<1112131415161718