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

1 2

  /bionic/libc/arch-arm/syscalls/
dup2.S 6 ENTRY(dup2) function
15 END(dup2)
  /bionic/libc/arch-mips/syscalls/
dup2.S 4 .globl dup2
6 .ent dup2
8 dup2: label
22 .end dup2
  /bionic/libc/arch-x86/syscalls/
dup2.S 6 ENTRY(dup2) function
24 END(dup2)
  /external/bison/lib/
dup2.c 30 # undef dup2 macro
48 /* If fd is closed, mingw hangs on dup2 (fd, fd). If fd is open,
49 dup2 (fd, fd) returns 0, but all further attempts to use fd in
50 future dup2 calls will hang. */
71 result = dup2 (fd, desired_fd);
86 # define dup2 ms_windows_dup2 macro
96 /* On Linux kernels 2.6.26-2.6.29, dup2 (fd, fd) returns -EBADF.
97 On Cygwin 1.5.x, dup2 (1, 1) returns 0.
98 On Haiku, dup2 (fd, fd) mistakenly clears FD_CLOEXEC. */
103 result = dup2 (fd, desired_fd)
138 dup2 (int fd, int desired_fd) function
    [all...]
spawni.c 66 # define dup2 __dup2 macro
268 if (dup2 (new_fd, action->action.open_action.fd)
270 /* The 'dup2' call failed. */
281 if (dup2 (action->action.dup2_action.fd,
284 /* The 'dup2' call failed. */
  /external/proguard/src/proguard/evaluation/
TracedStack.java 235 public void dup2() method in class:TracedStack
237 super.dup2();
Stack.java 425 public void dup2() method in class:Stack
Processor.java 205 stack.dup2();
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/lib/
unistd.in.h 160 <http://www.opengroup.org/susv3xsh/dup2.html>. */
161 extern int dup2 (int oldfd, int newfd);
164 # undef dup2 macro
165 # define dup2(o,n) \ macro
166 (GL_LINK_WARNING ("dup2 is unportable - " \
167 "use gnulib module dup2 for portability"), \
168 dup2 (o, n))
219 # define dup2 rpl_dup2 macro
220 extern int dup2 (int, int);
  /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...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 31 #define dup2 _dup2 macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 22 #define dup2 _dup2 macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 31 #define dup2 _dup2 macro
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 22 #define dup2 _dup2 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/X11/
Xw32defs.h 31 #define dup2 _dup2 macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 22 #define dup2 _dup2 macro
  /external/valgrind/main/coregrind/
m_libcfile.c 358 SysRes VG_(dup2) ( Int oldfd, Int newfd ) function
    [all...]
  /libcore/luni/src/main/java/libcore/io/
Os.java 37 public FileDescriptor dup2(FileDescriptor oldFd, int newFd) throws ErrnoException; method in interface:Os
Posix.java 40 public native FileDescriptor dup2(FileDescriptor oldFd, int newFd) throws ErrnoException; method in class:Posix
ForwardingOs.java 46 public FileDescriptor dup2(FileDescriptor oldFd, int newFd) throws ErrnoException { return os.dup2(oldFd, newFd); } method in class:ForwardingOs
  /ndk/sources/host-tools/make-3.81/
job.c 178 extern int dup2 ();
3049 dup2 (int old, int new) function
    [all...]
  /prebuilts/tools/common/asm-tools/
asm-commons-4.0.jar 
  /prebuilts/tools/common/m2/internal/asm/asm-commons/3.3/
asm-commons-3.3.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.objectweb.asm_3.2.0.v200909071300.jar 

Completed in 885 milliseconds

1 2