/external/bison/lib/ |
D | dup2.c | 95 # ifdef F_GETFL in rpl_dup2() 100 return fcntl (fd, F_GETFL) == -1 ? -1 : fd; in rpl_dup2() 140 int result = fcntl (fd, F_GETFL) < 0 ? -1 : fd; in dup2()
|
D | pipe2.c | 120 if ((fcntl_flags = fcntl (fd[1], F_GETFL, 0)) < 0 in pipe2() 122 || (fcntl_flags = fcntl (fd[0], F_GETFL, 0)) < 0 in pipe2()
|
D | error.c | 134 # ifndef F_GETFL in is_open() 137 return 0 <= fcntl (fd, F_GETFL); in is_open()
|
/external/chromium_org/tools/android/forwarder2/ |
D | socket.cc | 113 const int flags = fcntl(socket_, F_GETFL); in SetNonBlocking() 226 DCHECK(fcntl(socket_, F_GETFL) & O_NONBLOCK); in Connect() 325 DCHECK(fcntl(socket_, F_GETFL) & O_NONBLOCK); in NonBlockingRead() 348 DCHECK(fcntl(socket_, F_GETFL) & O_NONBLOCK); in NonBlockingWrite() 397 DCHECK(fcntl(socket_, F_GETFL) & O_NONBLOCK); in WaitForEvent()
|
/external/chromium_org/mojo/common/test/ |
D | test_utils_posix.cc | 21 int original_flags = fcntl(handle.fd, F_GETFL); in BlockingWrite() 42 int original_flags = fcntl(handle.fd, F_GETFL); in BlockingRead()
|
/external/strace/xlat/ |
D | fcntlcmds.h | 13 #if defined(F_GETFL) || (defined(HAVE_DECL_F_GETFL) && HAVE_DECL_F_GETFL) 14 XLAT(F_GETFL),
|
D | fcntlcmds.in | 4 F_GETFL
|
/external/chromium_org/third_party/libusb/src/libusb/os/ |
D | poll_posix.c | 34 ret = fcntl(pipefd[1], F_GETFL); in usbi_pipe()
|
/external/qemu/util/ |
D | oslib-posix.c | 158 f = fcntl(fd, F_GETFL); in qemu_set_block() 165 f = fcntl(fd, F_GETFL); in qemu_set_nonblock()
|
/external/valgrind/main/auxprogs/ |
D | valgrind-listener.c | 108 res = fcntl(sd, F_GETFL); in set_nonblocking() 119 res = fcntl(sd, F_GETFL); in set_blocking()
|
/external/valgrind/main/memcheck/tests/linux/ |
D | timerfd-syscall.c | 300 fcntl(tfd, F_SETFL, fcntl(tfd, F_GETFL, 0) | O_NONBLOCK); in main() 310 fcntl(tfd, F_SETFL, fcntl(tfd, F_GETFL, 0) & ~O_NONBLOCK); in main()
|
/external/lldb/tools/debugserver/source/ |
D | TTYState.cpp | 37 m_tflags = fcntl (fd, F_GETFL, 0); in GetTTYState()
|
/external/qemu/distrib/sdl-1.2.15/src/video/ataricommon/ |
D | SDL_ataridevmouse.c | 75 r = fcntl(handle, F_GETFL, 0); in SDL_AtariDevMouse_Open()
|
/external/chromium_org/third_party/boringssl/src/crypto/bio/ |
D | socket_helper.c | 87 int flags = fcntl(sock, F_GETFL, 0); in bio_socket_nbio()
|
/external/ppp/pppd/ |
D | tty.c | 491 fdflags = fcntl(0, F_GETFL); in tty_check_options() 583 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1 in connect_tty() 1052 flags = fcntl(pty_master, F_GETFL); 1056 flags = fcntl(ifd, F_GETFL); 1061 flags = fcntl(ofd, F_GETFL);
|
/external/chromium_org/base/ |
D | async_socket_io_handler_posix.cc | 77 int value = fcntl(socket, F_GETFL); in Initialize()
|
/external/chromium_org/third_party/cython/src/Cython/Includes/posix/ |
D | fcntl.pxd | 8 enum: F_GETFL
|
/external/kernel-headers/original/uapi/asm-generic/ |
D | fcntl.h | 102 #define F_GETFL 3 /* get file->f_flags */ macro
|
/external/bluetooth/bluedroid/osi/src/ |
D | semaphore.c | 70 int flags = fcntl(semaphore->fd, F_GETFL); in semaphore_try_wait()
|
/external/dnsmasq/src/ |
D | log.c | 131 if (max_logs != 0 && (flags = fcntl(log_fd, F_GETFL)) != -1) in log_reopen() 418 if ((flags = fcntl(log_fd, F_GETFL)) != -1) in flush_log()
|
/external/chromium_org/sandbox/linux/bpf_dsl/ |
D | bpf_dsl_unittest.cc | 303 .CASES((F_GETFL, F_GETFD), Error(ENOENT)) in EvaluateSyscall() 320 ASSERT_SYSCALL_RESULT(-ENOENT, fcntl, sock_fd.get(), F_GETFL); in BPF_TEST_C()
|
/external/chromium_org/tools/android/forwarder/ |
D | forwarder.cc | 279 fcntl(socket, F_SETFL, fcntl(socket, F_GETFL) | O_NONBLOCK); in ServerThread() 280 fcntl(host_socket, F_SETFL, fcntl(host_socket, F_GETFL) | O_NONBLOCK); in ServerThread()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_network.c | 176 int old = fcntl(s, F_GETFL, 0); in u_socket_block()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_network.c | 176 int old = fcntl(s, F_GETFL, 0); in u_socket_block()
|
/external/lldb/source/Host/common/ |
D | Terminal.cpp | 143 m_tflags = ::fcntl (fd, F_GETFL, 0); in Save()
|