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

1 2 3 4 5 6

  /bionic/libc/bionic/
dup2.cpp 32 int dup2(int old_fd, int new_fd) { function
33 // If old_fd is equal to new_fd and a valid file descriptor, dup2 returns
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
dup2.c 2 * Public domain dup2() lookalike
6 * dup2 performs the following functions:
20 dup2(int fd1, int fd2) function
  /external/python/cpython2/Python/
dup2.c 2 * Public domain dup2() lookalike
6 * dup2 performs the following functions:
20 dup2(int fd1, int fd2) function
  /external/python/cpython3/Python/
dup2.c 2 * Public domain dup2() lookalike
6 * dup2 performs the following functions:
20 dup2(int fd1, int fd2) function
  /prebuilts/go/darwin-x86/misc/cgo/testcshared/src/libgo2/
dup2.go 11 func dup2(oldfd, newfd int) error { func
12 return syscall.Dup2(oldfd, newfd)
dup3.go 11 func dup2(oldfd, newfd int) error { func
  /prebuilts/go/linux-x86/misc/cgo/testcshared/src/libgo2/
dup2.go 11 func dup2(oldfd, newfd int) error { func
12 return syscall.Dup2(oldfd, newfd)
dup3.go 11 func dup2(oldfd, newfd int) error { func
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
posixfile.py 15 f.dup2(fd)
107 def dup2(self, fd): member in class:_posixfile_
113 posix.dup2(self._file_.fileno(), fd)
  /external/python/cpython2/Lib/
posixfile.py 15 f.dup2(fd)
107 def dup2(self, fd): member in class:_posixfile_
113 posix.dup2(self._file_.fileno(), fd)
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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/proguard/src/proguard/evaluation/
TracedStack.java 252 public void dup2() method in class:TracedStack
254 super.dup2();
263 actualProducerStack.dup2();
Stack.java 424 public void dup2() method in class:Stack
Processor.java 220 stack.dup2();
    [all...]
  /external/libusb/tests/
testlib.c 39 #define dup2 _dup2 macro
85 IGNORE_RETVAL(dup2(ctx->old_stdout, STDOUT_FILENO));
89 IGNORE_RETVAL(dup2(ctx->old_stderr, STDERR_FILENO));
135 if ((dup2(ctx->null_fd, STDOUT_FILENO) < 0) ||
136 (dup2(ctx->null_fd, STDERR_FILENO) < 0)) {
  /libcore/ojluni/src/main/java/java/net/
PlainSocketImpl.java 229 Libcore.os.dup2(markerFD, fd.getInt$());
  /device/linaro/bootloader/edk2/StdLib/LibC/Uefi/
SysCalls.c 442 The dup2() function provides an alternative interface to the
444 - fid = dup2(fildes, fildes2);
450 dup2() shall return -1 with errno set to [EBADF].
451 - If fildes is a valid file descriptor and is equal to fildes2, dup2()
453 - If fildes is not a valid file descriptor, dup2() shall return -1 and
466 dup2 (int fildes, int fildes2) function
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 20 # define dup2 _dup2 macro
  /external/valgrind/coregrind/
m_libcfile.c 481 SysRes VG_(dup2) ( Int oldfd, Int newfd ) function
484 /* We only have dup3, that means we have to mimic dup2.
486 dup3 always returns an error, but dup2 returns only an
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageQueueTest.java     [all...]
  /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...]
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 214 * descriptors are released via a dup2() call which closes
855 Os.dup2(descriptors[0], STDIN_FILENO);
856 Os.dup2(descriptors[1], STDOUT_FILENO);
857 Os.dup2(descriptors[2], STDERR_FILENO);
    [all...]

Completed in 2814 milliseconds

1 2 3 4 5 6