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

1 2 3

  /external/bison/lib/
cloexec.c 43 int flags = fcntl (desc, F_GETFD, 0);
pipe2.c 131 if ((fcntl_flags = fcntl (fd[1], F_GETFD, 0)) < 0
133 || (fcntl_flags = fcntl (fd[0], F_GETFD, 0)) < 0
fcntl.c 163 F_GETFD - ARG need not be present. If successful, return a
194 int flags = fcntl (fd, F_GETFD);
256 int flags = fcntl (result, F_GETFD);
270 case F_GETFD:
287 } /* F_GETFD */
fcntl.in.h 183 #ifndef F_GETFD
184 # define F_GETFD 2
  /development/ndk/platforms/android-3/header-patches/include/asm-generic/
fcntl.h 54 #define F_GETFD 1
  /development/ndk/platforms/android-3/include/asm-generic/
fcntl.h 65 #define F_GETFD 1
  /development/ndk/platforms/android-L/include/asm-generic/
fcntl.h 94 #define F_GETFD 1
  /bionic/libc/kernel/uapi/asm-generic/
fcntl.h 100 #define F_GETFD 1
  /external/kernel-headers/original/uapi/asm-generic/
fcntl.h 100 #define F_GETFD 1 /* get close_on_exec */
  /art/runtime/
zip_archive.cc 78 int flags = fcntl(fd, F_GETFD);
80 PLOG(WARNING) << "fcntl(" << fd << ", F_GETFD) failed";
  /external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/
SQLiteFileSystemPosix.cpp 87 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
  /bionic/tests/
fcntl_test.cpp 28 int flags = fcntl(fd, F_GETFD);
35 flags = fcntl(fd, F_GETFD);
sys_socket_test.cpp 126 ASSERT_EQ(FD_CLOEXEC, fcntl(fd_acc, F_GETFD) & FD_CLOEXEC);
  /development/ndk/sources/android/libportable/arch-mips/
fcntl.c 83 native_cmd = F_GETFD;
391 case F_GETFD:
  /external/bison/darwin-lib/
fcntl.h 495 #ifndef F_GETFD
496 # define F_GETFD 2
  /external/bison/linux-lib/
fcntl.h 495 #ifndef F_GETFD
496 # define F_GETFD 2
  /external/chromium_org/sandbox/linux/bpf_dsl/
bpf_dsl_unittest.cc 303 .CASES((F_GETFL, F_GETFD), Error(ENOENT))
319 ASSERT_SYSCALL_RESULT(-ENOENT, fcntl, sock_fd.get(), F_GETFD);
  /external/chromium_org/sandbox/linux/seccomp-bpf-helpers/
syscall_parameters_restrictions.cc 180 F_GETFD,
  /external/chromium_org/third_party/libusb/src/libusb/os/
linux_netlink.c 71 flags = fcntl (linux_netlink_socket, F_GETFD);
  /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/dhcpcd/
common.c 114 if ((flags = fcntl(fd, F_GETFD, 0)) == -1 ||
  /external/e2fsprogs/lib/et/
error_message.c 255 flags = fcntl(fd, F_GETFD);
  /external/mesa3d/src/gallium/state_trackers/egl/drm/
native_drm.c 325 fcntl(fd, F_SETFD, fcntl(fd, F_GETFD) | FD_CLOEXEC);
  /external/mesa3d/src/gallium/state_trackers/egl/wayland/
native_drm.c 144 fcntl(drmdpy->fd, F_SETFD, fcntl(drmdpy->fd, F_GETFD) | FD_CLOEXEC);

Completed in 685 milliseconds

1 2 3