Symbol: F_GETFL
bin/csh/lex.c
1456
flags = fcntl(SHIN, F_GETFL);
bin/ksh/io.c
322
if ((fl = fcntl(fd, F_GETFL)) == -1) {
bin/ksh/misc.c
1115
if ((flags = fcntl(fd, F_GETFL)) == -1)
bin/ksh/shf.c
139
int flags = fcntl(fd, F_GETFL);
bin/ksh/shf.c
82
int flags = fcntl(fd, F_GETFL);
lib/libc/gen/opendir.c
70
if ((flags = fcntl(fd, F_GETFL)) == -1)
lib/libc/stdio/fdopen.c
52
if ((fdflags = fcntl(fd, F_GETFL)) == -1)
lib/libc/sys/w_fcntl.c
39
case F_GETFL:
lib/libedit/readline.c
2091
if ((n = fcntl(el->el_infd, F_GETFL)) == -1)
lib/libevent/evutil.c
57
if ((flags = fcntl(fd, F_GETFL)) == -1) {
lib/libpcap/pcap.c
440
fdflags = fcntl(p->fd, F_GETFL);
lib/libpcap/pcap.c
457
fdflags = fcntl(p->fd, F_GETFL);
lib/libz/gzlib.c
256
fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_NONBLOCK);
regress/lib/libc/sys/t_pipe2.c
74
ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) != 0);
regress/lib/libc/sys/t_pipe2.c
75
ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) != 0);
regress/lib/libc/sys/t_pipe2.c
77
ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) == 0);
regress/lib/libc/sys/t_pipe2.c
78
ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) == 0);
regress/lib/libc/sys/t_socketpair.c
86
ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) != 0);
regress/lib/libc/sys/t_socketpair.c
87
ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) != 0);
regress/lib/libc/sys/t_socketpair.c
89
ATF_REQUIRE((fcntl(fd[0], F_GETFL) & O_NONBLOCK) == 0);
regress/lib/libc/sys/t_socketpair.c
90
ATF_REQUIRE((fcntl(fd[1], F_GETFL) & O_NONBLOCK) == 0);
regress/lib/libc/sys/t_stat.c
342
flags = fcntl(fd, F_GETFL);
regress/lib/libpthread/fcntl/fcntl.c
51
CHECKe(flags = fcntl(0, F_GETFL));
regress/lib/libpthread/fcntl/fcntl.c
66
CHECKe(newflags = fcntl(0, F_GETFL));
regress/lib/libpthread/fork/fork.c
72
CHECKe(flags = fcntl(STDOUT_FILENO, F_GETFL));
regress/lib/libpthread/select/select.c
88
flags = fcntl(fd, F_GETFL);
regress/lib/libpthread/socket/3/socket3.c
104
flags = fcntl(accept_fd, F_GETFL);
regress/lib/libpthread/socket/3/socket3.c
98
flags = fcntl(listen_fd, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
102
new_flags = fcntl(STDOUT_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
110
new_flags = fcntl(dup_stdout, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
118
new_flags = fcntl(STDERR_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
30
stdin_flags = fcntl(STDIN_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
32
stdout_flags = fcntl(STDOUT_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
34
dup_flags = fcntl(dup_stdout, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
36
stderr_flags = fcntl(STDERR_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
46
new_flags = fcntl(STDIN_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
54
new_flags = fcntl(STDOUT_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
62
new_flags = fcntl(dup_stdout, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
70
new_flags = fcntl(STDERR_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
86
new_flags = fcntl(STDERR_FILENO, F_GETFL);
regress/lib/libpthread/stdfiles/stdfiles.c
98
new_flags = fcntl(STDIN_FILENO, F_GETFL);
regress/sys/kern/pwrite/pwrite.c
69
if (fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_APPEND))
regress/sys/kern/pwritev/pwritev.c
76
if (fcntl(fd, F_SETFL, fcntl(fd, F_GETFL) | O_APPEND))
regress/sys/kern/signal/sigio/sigio_common.c
104
flags = fcntl(fds[0], F_GETFL);
regress/sys/kern/signal/sigio/sigio_common.c
198
flags = fcntl(fds[0], F_GETFL);
regress/sys/kern/signal/sigio/sigio_common.c
228
flags = fcntl(fds[0], F_GETFL);
regress/sys/kern/signal/sigio/sigio_common.c
230
flags = fcntl(fds[1], F_GETFL);
regress/sys/kern/signal/sigio/sigio_socket.c
88
flags = fcntl(sock, F_GETFL);
sbin/isakmpd/isakmpd.c
374
if (fcntl(dupfd, F_GETFL) == -1 && errno == EBADF) {
sbin/newfs/newfs.c
612
if (fcntl(STDERR_FILENO, F_GETFL) == -1) {
sbin/unwind/libunbound/util/net_help.c
143
if((flag = fcntl(s, F_GETFL)) == -1) {
sbin/unwind/libunbound/util/net_help.c
167
if((flag = fcntl(s, F_GETFL)) == -1) {
sys/kern/kern_descrip.c
475
case F_GETFL:
usr.bin/cu/cu.c
255
if ((mode = fcntl(fd, F_GETFL)) == -1)
usr.bin/dig/lib/isc/unix/socket.c
369
flags = fcntl(fd, F_GETFL, 0);
usr.bin/ftp/util.c
1096
flags = fcntl(s, F_GETFL, 0);
usr.bin/rdist/child.c
436
if ((flags = fcntl(fd, F_GETFL)) == -1)
usr.bin/rsync/server.c
34
if ((fl = fcntl(fd, F_GETFL, 0)) == -1)
usr.bin/skeyaudit/skeyaudit.c
108
if (iflag && fcntl(STDOUT_FILENO, F_GETFL) == -1 && errno == EBADF)
usr.bin/skeyaudit/skeyaudit.c
55
if (fcntl(dupfd, F_GETFL) == -1 && errno == EBADF) {
usr.bin/ssh/channels.c
464
(val = fcntl(rfd, F_GETFL)) != -1 && !(val & O_NONBLOCK)) {
usr.bin/ssh/channels.c
470
(val = fcntl(wfd, F_GETFL)) != -1 && !(val & O_NONBLOCK)) {
usr.bin/ssh/channels.c
476
(val = fcntl(efd, F_GETFL)) != -1 && !(val & O_NONBLOCK)) {
usr.bin/ssh/misc.c
150
val = fcntl(fd, F_GETFL);
usr.bin/ssh/misc.c
1556
if (fcntl(dupfd, F_GETFL) == -1 && errno == EBADF) {
usr.bin/ssh/misc.c
174
val = fcntl(fd, F_GETFL);
usr.bin/tcpbench/tcpbench.c
939
if ((r = fcntl(sock, F_GETFL)) == -1)
usr.bin/tmux/tmux.c
265
if ((mode = fcntl(fd, F_GETFL)) != -1) {
usr.sbin/ftp-proxy/ftp-proxy.c
480
if ((fc = fcntl(s->server_fd, F_GETFL)) == -1 ||
usr.sbin/iscsid/util.c
112
if ((flags = fcntl(fd, F_GETFL)) == -1)
usr.sbin/ldapd/btree.c
1088
fl = fcntl(fd, F_GETFL);
usr.sbin/lldpd/lldpd.c
1294
if (fcntl(devnull, F_GETFL) == -1)
usr.sbin/npppd/npppd/npppd_subr.c
233
if ((flags = fcntl(sock, F_GETFL)) < 0) {
usr.sbin/npppd/pptp/pptp_ctrl.c
184
if ((ival = fcntl(_this->sock, F_GETFL)) < 0) {
usr.sbin/npppd/pptp/pptpd.c
360
if ((ival = fcntl(sock_gre, F_GETFL)) < 0) {
usr.sbin/nsd/server.c
4300
if((flag = fcntl(fd, F_GETFL)) == -1) {
usr.sbin/nsd/verify.c
475
flags = fcntl(fderr, F_GETFL, 0);
usr.sbin/nsd/verify.c
482
flags = fcntl(fdout, F_GETFL, 0);
usr.sbin/ntpd/control.c
305
if ((flags = fcntl(fd, F_GETFL)) == -1)
usr.sbin/pppd/chat/chat.c
1122
if ((status = fcntl(0, F_GETFL)) == -1)
usr.sbin/pppd/chat/chat.c
1149
if ((status = fcntl(0, F_GETFL)) == -1)
usr.sbin/pppd/chat/chat.c
456
if ((flags = fcntl(0, F_GETFL)) == -1)
usr.sbin/pppd/chat/chat.c
470
if ((flags = fcntl(0, F_GETFL)) == -1)
usr.sbin/pppd/main.c
445
if ((fdflags = fcntl(ttyfd, F_GETFL)) == -1
usr.sbin/pppd/sys-bsd.c
304
if ((initfdflags = fcntl(fd, F_GETFL)) == -1
usr.sbin/pppd/sys-bsd.c
532
if ((flags = fcntl(loop_master, F_GETFL)) != -1)
usr.sbin/radiusd/radiusd.c
1190
if ((ival = fcntl(module->fd, F_GETFL)) == -1) {
usr.sbin/radiusd/radiusd_module.c
124
if ((ival = fcntl(base->ibuf.fd, F_GETFL)) == -1)
usr.sbin/smtpd/ioev.c
149
if ((flags = fcntl(fd, F_GETFL)) == -1)
usr.sbin/syslogd/privsep.c
486
if ((flags = fcntl(fd[1], F_GETFL)) == -1) {
usr.sbin/syslogd/syslogd.c
2970
if ((i = fcntl(f->f_file, F_GETFL)) != -1) {
usr.sbin/syslogd/syslogd.c
501
if (fcntl(fd, F_GETFL) == -1 && errno == EBADF)
usr.sbin/tftpd/tftpd.c
1645
if (fcntl(devnull, F_GETFL) == -1)
usr.sbin/unbound/util/net_help.c
143
if((flag = fcntl(s, F_GETFL)) == -1) {
usr.sbin/unbound/util/net_help.c
167
if((flag = fcntl(s, F_GETFL)) == -1) {