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

1 2 3 4

  /external/mesa3d/src/gallium/winsys/vc4/drm/
vc4_drm_winsys.c 34 return vc4_screen_create(fcntl(fd, F_DUPFD_CLOEXEC, 3));
  /external/wayland/src/
wayland-os.h 56 #ifndef F_DUPFD_CLOEXEC
57 #define F_DUPFD_CLOEXEC 1030
wayland-os.c 80 newfd = fcntl(fd, F_DUPFD_CLOEXEC, minfd);
  /external/strace/xlat/
fcntlcmds.in 26 F_DUPFD_CLOEXEC (1024 + 6)
fcntlcmds.h 68 #if !(defined(F_DUPFD_CLOEXEC) || (defined(HAVE_DECL_F_DUPFD_CLOEXEC) && HAVE_DECL_F_DUPFD_CLOEXEC))
69 # define F_DUPFD_CLOEXEC (1024 + 6)
117 XLAT(F_DUPFD_CLOEXEC),
  /external/ltp/include/lapi/
fcntl.h 41 #ifndef F_DUPFD_CLOEXEC
42 # define F_DUPFD_CLOEXEC 1030
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
fcntl.h 16 #define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6)
  /libcore/ojluni/src/main/java/java/io/
FileDescriptor.java 30 import static android.system.OsConstants.F_DUPFD_CLOEXEC;
174 return new FileDescriptor(Os.fcntlInt(new FileDescriptor(fd), F_DUPFD_CLOEXEC, 0));
  /bionic/libc/kernel/uapi/linux/
fcntl.h 25 #define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6)
  /external/kernel-headers/original/uapi/linux/
fcntl.h 17 #define F_DUPFD_CLOEXEC (F_LINUX_SPECIFIC_BASE + 6)
  /external/ltp/testcases/kernel/syscalls/fcntl/
fcntl29.c 21 * Basic test for fcntl(2) using F_DUPFD_CLOEXEC argument.
57 TEST(fcntl(test_fd, F_DUPFD_CLOEXEC, 0));
60 "test F_DUPFD_CLOEXEC failed");
73 "F_DUPFD_CLOEXEC success");
76 "F_DUPFD_CLOEXEC fail");
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_drm.c 51 if (fd < 0 || (new_fd = fcntl(fd, F_DUPFD_CLOEXEC, 3)) < 0)
  /frameworks/native/libs/binder/
IShellCallback.cpp 52 return fd >= 0 ? fcntl(fd, F_DUPFD_CLOEXEC, 0) : fd;
IActivityManager.cpp 49 fd = fcntl(reply.readParcelFileDescriptor(), F_DUPFD_CLOEXEC, 0);
MemoryHeapBase.cpp 85 mapfd(fcntl(fd, F_DUPFD_CLOEXEC, 0), size, offset);
  /bionic/tests/headers/posix/
fcntl_h.c 35 MACRO(F_DUPFD_CLOEXEC);
  /external/mesa3d/src/gallium/winsys/svga/drm/
vmw_screen.c 92 vws->ioctl.drm_fd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
  /external/honggfuzz/libcommon/
log.c 55 log_fd = fcntl(STDERR_FILENO, F_DUPFD_CLOEXEC, 0);
  /external/mesa3d/src/gallium/winsys/nouveau/drm/
nouveau_drm_winsys.c 95 dupfd = fcntl(fd, F_DUPFD_CLOEXEC, 3);
  /external/strace/
fcntl.c 103 case F_DUPFD_CLOEXEC:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
fcntl.h 110 # define F_DUPFD_CLOEXEC 1030 /* Duplicate file descriptor with
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
fcntl.h 125 # define F_DUPFD_CLOEXEC 1030 /* Duplicate file descriptor with
  /prebuilts/go/darwin-x86/src/net/
fd_unix.go 259 // tryDupCloexec indicates whether F_DUPFD_CLOEXEC should be used.
265 r0, _, e1 := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_DUPFD_CLOEXEC, 0)
268 // >= 10.6), F_DUPFD_CLOEXEC is unsupported
  /prebuilts/go/linux-x86/src/net/
fd_unix.go 259 // tryDupCloexec indicates whether F_DUPFD_CLOEXEC should be used.
265 r0, _, e1 := syscall.Syscall(syscall.SYS_FCNTL, uintptr(fd), syscall.F_DUPFD_CLOEXEC, 0)
268 // >= 10.6), F_DUPFD_CLOEXEC is unsupported
  /external/minijail/linux-x86/
libconstants.gen.c 542 #ifdef F_DUPFD_CLOEXEC
543 { "F_DUPFD_CLOEXEC", (unsigned long) F_DUPFD_CLOEXEC },
544 #endif // F_DUPFD_CLOEXEC
    [all...]

Completed in 690 milliseconds

1 2 3 4