/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()
|
D | fcntl04.c | 51 TEST(fcntl(fd, F_GETFL, 0)); in verify_fcntl()
|
/external/strace/xlat/ |
D | fcntlcmds.h | 11 #if !(defined(F_GETFL) || (defined(HAVE_DECL_F_GETFL) && HAVE_DECL_F_GETFL)) 12 # define F_GETFL 3 macro 96 XLAT(F_GETFL),
|
D | fcntlcmds.in | 5 F_GETFL 3
|
/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/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/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/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/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/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/signalfd4/ |
D | signalfd4_02.c | 146 fl = fcntl(fd, F_GETFL); in main() 164 fl = fcntl(fd, F_GETFL); in main()
|
/external/libmojo/mojo/edk/test/ |
D | test_utils_posix.cc | 21 int original_flags = fcntl(handle.handle, F_GETFL); in BlockingWrite() 42 int original_flags = fcntl(handle.handle, F_GETFL); in BlockingRead()
|
/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/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/devlib/devlib/instrument/ |
D | acmecape.py | 7 from fcntl import fcntl, F_GETFL, F_SETFL 22 flags = fcntl(fd, F_GETFL)
|
/external/libdaemon/libdaemon/ |
D | dnonblock.c | 37 if ((a = fcntl(fd, F_GETFL)) < 0) in daemon_nonblock()
|
/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 | 51 int flags = fcntl(fd, F_GETFL); in setBlocking()
|
/external/valgrind/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/ppp/pppd/ |
D | tty.c | 496 fdflags = fcntl(0, F_GETFL); in tty_check_options() 591 if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1 in connect_tty() 1055 flags = fcntl(pty_master, F_GETFL); 1059 flags = fcntl(ifd, F_GETFL); 1064 flags = fcntl(ofd, F_GETFL);
|