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

1 2 3 4

  /external/bison/lib/
cloexec.c 41 #ifdef F_SETFD
50 || fcntl (desc, F_SETFD, newflags) != -1)
56 #else /* !F_SETFD */
71 #endif /* !F_SETFD */
pipe2.c 132 || fcntl (fd[1], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1
134 || fcntl (fd[0], F_SETFD, fcntl_flags | FD_CLOEXEC) == -1)
fcntl.c 201 if (0 <= result && fcntl (fd, F_SETFD, flags) == -1)
257 if (flags < 0 || fcntl (result, F_SETFD, flags | FD_CLOEXEC) == -1)
290 /* Implementing F_SETFD on mingw is not trivial - there is no
  /development/ndk/platforms/android-3/header-patches/include/asm-generic/
fcntl.h 55 #define F_SETFD 2
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 66 #define F_SETFD 2
  /development/ndk/platforms/android-L/include/asm-generic/
fcntl.h 95 #define F_SETFD 2
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 101 #define F_SETFD 2
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 101 #define F_SETFD 2 /* set/clear close_on_exec */
  /external/mtpd/
mtpd.c 116 fcntl(control, F_SETFD, FD_CLOEXEC);
172 fcntl(signals[0], F_SETFD, FD_CLOEXEC);
173 fcntl(signals[1], F_SETFD, FD_CLOEXEC);
298 fcntl(the_socket, F_SETFD, FD_CLOEXEC);
  /development/ndk/sources/android/libportable/arch-mips/
fcntl.c 87 native_cmd = F_SETFD;
392 case F_SETFD:
409 if (mips_cmd == F_SETFD) {
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 304 .Case(F_SETFD, If(long_arg == O_CLOEXEC, Allow()).Else(Error(EINVAL)))
322 ASSERT_SYSCALL_RESULT(0, fcntl, sock_fd.get(), F_SETFD, O_CLOEXEC);
323 ASSERT_SYSCALL_RESULT(-EINVAL, fcntl, sock_fd.get(), F_SETFD, 0);
  /art/runtime/
zip_archive.cc 83 int rc = fcntl(fd, F_SETFD, flags | FD_CLOEXEC);
85 PLOG(WARNING) << "fcntl(" << fd << ", F_SETFD, " << flags << ") failed";
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteFileSystemPosix.cpp 87 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
  /external/iptables/extensions/
libxt_set.h 27 if (fcntl(sockfd, F_SETFD, FD_CLOEXEC) == -1) {
  /external/chromium_org/components/nacl/loader/nonsfi/
nonsfi_sandbox_unittest.cc 266 BPF_ASSERT_EQ(0, fcntl(fds[0].get(), F_SETFD, FD_CLOEXEC));
275 fcntl(fds[0].get(), F_SETFD, 99);
nonsfi_sandbox.cc 55 // 1. F_SETFD + FD_CLOEXEC: libevent's epoll_init uses this.
65 return If((cmd == F_SETFD && long_arg == FD_CLOEXEC) || cmd == F_GETFL ||
  /bionic/tests/
fcntl_test.cpp 32 int rc = fcntl(fd, F_SETFD, FD_CLOEXEC);
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 181 F_SETFD,
  /external/chromium_org/third_party/libevent/
signal.c 88 if (fcntl(x, F_SETFD, 1) == -1) \
89 event_warn("fcntl(%d, F_SETFD)", x); \
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 77 fcntl (linux_netlink_socket, F_SETFD, flags | FD_CLOEXEC);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/drm/
native_drm.c 325 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/wayland/
native_drm.c 144 fcntl(drmdpy->fd, F_SETFD, fcntl(drmdpy->fd, F_GETFD) | FD_CLOEXEC);
  /external/chromium_org/third_party/webrtc/test/channel_transport/
udp_socket_posix.cc 65 if(fcntl(_socket, F_SETFD, FD_CLOEXEC) == -1)
  /external/dhcpcd/
common.c 115 fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
  /external/e2fsprogs/lib/et/
error_message.c 257 fcntl(fd, F_SETFD, flags | FD_CLOEXEC);

Completed in 1731 milliseconds

1 2 3 4