/external/ltp/testcases/kernel/syscalls/fcntl/ |
D | fcntl01.c | 96 flags = fcntl(fd[2], F_GETFL, 0); in main() 105 flags = fcntl(fd[2], F_GETFL, 0); in main() 114 flags = fcntl(fd[2], F_GETFL, 0); in main() 123 flags = fcntl(fd[2], F_GETFL, 0); in main() 133 flags = fcntl(fd[2], F_GETFL, 0); in main()
|
/external/python/cpython3/Python/ |
D | dup2.c | 23 if (fcntl(fd1, F_GETFL) < 0) in dup2() 25 if (fcntl(fd2, F_GETFL) >= 0) in dup2()
|
/external/python/cpython2/Python/ |
D | dup2.c | 23 if (fcntl(fd1, F_GETFL) < 0) in dup2() 25 if (fcntl(fd2, F_GETFL) >= 0) in dup2()
|
/external/ltp/testcases/kernel/syscalls/eventfd2/ |
D | eventfd2_02.c | 97 fl = fcntl(fd, F_GETFL); in main() 110 fl = fcntl(fd, F_GETFL); in main()
|
/external/grpc-grpc/src/core/lib/iomgr/ |
D | endpoint_pair_posix.cc | 44 flags = fcntl(sv[0], F_GETFL, 0); in create_sockets() 46 flags = fcntl(sv[1], F_GETFL, 0); in create_sockets()
|
/external/perfetto/src/base/ |
D | pipe.cc | 42 int cur_flags = fcntl(*p.rd, F_GETFL, 0); in Create() 48 int cur_flags = fcntl(*p.wr, F_GETFL, 0); in Create()
|
/external/ltp/testcases/kernel/syscalls/socket/ |
D | socket02.c | 45 {SOCK_STREAM, 0, F_GETFL, "no non-blocking"}, 46 {SOCK_STREAM | SOCK_NONBLOCK, O_NONBLOCK, F_GETFL, "non-blocking"}
|
/external/ltp/testcases/kernel/syscalls/timerfd/ |
D | timerfd03.c | 143 fl = fcntl(fd, F_GETFL); in main() 161 fl = fcntl(fd, F_GETFL); in main()
|
D | timerfd01.c | 253 fcntl(tfd, F_SETFL, fcntl(tfd, F_GETFL, 0) | O_NONBLOCK); in main() 265 fcntl(tfd, F_SETFL, fcntl(tfd, F_GETFL, 0) & ~O_NONBLOCK); in main()
|
/external/ltp/testcases/kernel/syscalls/inotify_init/ |
D | inotify_init1_02.c | 141 fl = fcntl(fd, F_GETFL); in main() 158 fl = fcntl(fd, F_GETFL); in main()
|
/external/ltp/testcases/kernel/syscalls/signalfd4/ |
D | signalfd4_02.c | 146 fl = fcntl(fd, F_GETFL); in main() 164 fl = fcntl(fd, F_GETFL); in main()
|
/external/ltp/testcases/kernel/syscalls/pipe2/ |
D | pipe2_02.c | 140 fl = fcntl(fds[i], F_GETFL); in main() 158 fl = fcntl(fds[i], F_GETFL); in main()
|
/external/ltp/testcases/kernel/syscalls/socketpair/ |
D | socketpair02.c | 48 {SOCK_STREAM, 0, F_GETFL, "no non-blocking"}, 49 {SOCK_STREAM | SOCK_NONBLOCK, O_NONBLOCK, F_GETFL, "non-blocking"}
|
/external/strace/xlat/ |
D | fcntlcmds.h | 27 #if defined(F_GETFL) || (defined(HAVE_DECL_F_GETFL) && HAVE_DECL_F_GETFL) 29 static_assert((F_GETFL) == (3), "F_GETFL != 3"); 32 # define F_GETFL 3 402 XLAT(F_GETFL),
|
/external/grpc-grpc/test/core/end2end/fixtures/ |
D | h2_fd.cc | 45 flags = fcntl(sv[0], F_GETFL, 0); in create_sockets() 47 flags = fcntl(sv[1], F_GETFL, 0); in create_sockets()
|
/external/ltp/testcases/kernel/security/tomoyo/ |
D | tomoyo_rewrite_test.c | 110 show_result(fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_APPEND)); in stage_rewrite_test() 154 show_result(fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) & ~O_APPEND)); in stage_rewrite_test()
|
/external/grpc-grpc/test/core/iomgr/ |
D | tcp_posix_test.cc | 68 flags = fcntl(sv[0], F_GETFL, 0); in create_sockets() 70 flags = fcntl(sv[1], F_GETFL, 0); in create_sockets() 105 int flags = fcntl(sv[0], F_GETFL, 0); in create_inet_sockets() 107 flags = fcntl(sv[1], F_GETFL, 0); in create_inet_sockets() 351 flags = fcntl(fd, F_GETFL, 0); in drain_socket_blocking() 376 flags = fcntl(fd, F_GETFL, 0); in drain_socket_blocking()
|
D | fd_posix_test.cc | 73 flags = fcntl(fd, F_GETFL, 0); in create_test_socket() 203 flags = fcntl(fd, F_GETFL, 0); in listen_cb() 452 flags = fcntl(sv[0], F_GETFL, 0); in test_grpc_fd_change() 454 flags = fcntl(sv[1], F_GETFL, 0); in test_grpc_fd_change()
|
/external/ltp/utils/sctp/func_tests/ |
D | test_1_to_1_nonblock.c | 112 sflag = fcntl(lstn_sk, F_GETFL, 0); in main() 132 cflag = fcntl(sk, F_GETFL, 0); in main()
|
/external/adhd/cras/src/common/ |
D | cras_util.c | 77 fl = fcntl(fd, F_GETFL); in cras_make_fd_nonblocking() 89 fl = fcntl(fd, F_GETFL); in cras_make_fd_blocking()
|
/external/libdaemon/libdaemon/ |
D | dnonblock.c | 37 if ((a = fcntl(fd, F_GETFL)) < 0) in daemon_nonblock()
|
/external/u-boot/arch/sandbox/cpu/ |
D | eth-raw-os.c | 64 flags = fcntl(priv->sd, F_GETFL, 0); in _raw_packet_start() 128 flags = fcntl(priv->sd, F_GETFL, 0); in _local_inet_start()
|
/external/python/cpython2/Lib/ |
D | posixfile.py | 133 cur_fl = fcntl.fcntl(file.fileno(), fcntl.F_GETFL, 0) 145 l_flags = fcntl.fcntl(file.fileno(), fcntl.F_GETFL, 0)
|
/external/libusb/libusb/os/ |
D | poll_posix.c | 36 ret = fcntl(pipefd[1], F_GETFL); in usbi_pipe()
|
/external/conscrypt/common/src/jni/main/cpp/conscrypt/ |
D | netutil.cc | 50 int flags = fcntl(fd, F_GETFL); in setBlocking()
|