Searched refs:F_GETFL (Results 1 - 25 of 133) sorted by relevance

123456

/macosx-10.10/ntp-92/lib/isc/win32/
H A Dunistd.h28 #define F_GETFL 1 macro
/macosx-10.10/ruby-106/ruby/missing/
H A Ddup2.c31 #ifdef F_GETFL
32 if (fcntl(fd1, F_GETFL) < 0)
34 if (fcntl(fd2, F_GETFL) >= 0)
/macosx-10.10/bind9-45.101/bind9/lib/isc/win32/
H A Dunistd.h28 #define F_GETFL 1 macro
/macosx-10.10/postfix-255/postfix/src/util/
H A Dnon_blocking.c61 if ((flags = fcntl(fd, F_GETFL, 0)) < 0)
/macosx-10.10/BerkeleyDB-21/db/os_qnx/
H A Dos_qnx_fsync.c38 RETRY_CHK(fcntl(fd, F_GETFL), ret);
60 RETRY_CHK(fcntl(fd, F_GETFL), ret);
/macosx-10.10/ruby-106/ruby/ext/io/nonblock/
H A Dnonblock.c20 #ifdef F_GETFL
24 int f = fcntl(fd, F_GETFL);
32 #ifdef F_GETFL
/macosx-10.10/ksh-23/ksh/src/lib/libast/comp/
H A Dfcntl.c69 #if F_GETFL >= _ast_F_LOCAL
70 case F_GETFL:
/macosx-10.10/xnu-2782.1.97/tools/tests/libMicro/
H A Dfcntl.c93 if (fcntl(fd, F_GETFL, &flags) == -1)
H A Dfcntl_ndelay.c56 "notes: measures F_GETFL/F_SETFL O_NDELAY on socket\n");
83 if (fcntl(fd, F_GETFL, &flags) < 0)
90 if (fcntl(fd, F_GETFL, &flags) < 0)
/macosx-10.10/ruby-106/ruby/ext/fcntl/
H A Dfcntl.c57 * m = s.fcntl(Fcntl::F_GETFL, 0)
102 #ifdef F_GETFL
103 /* Document-const: F_GETFL
108 rb_define_const(mFcntl, "F_GETFL", INT2NUM(F_GETFL));
/macosx-10.10/curl-83.1.2/curl/lib/
H A Dnonblock.c58 flags = sfcntl(sockfd, F_GETFL, 0);
/macosx-10.10/ksh-23/ksh/src/lib/libast/features/
H A Dfcntl.c116 #ifndef F_GETFL
119 if (F_GETFL > f_local) f_local = F_GETFL;
177 #ifndef F_GETFL
178 printf("#define F_GETFL %d\n", ++f_local);
/macosx-10.10/ruby-106/ruby/test/ruby/
H A Dtest_readpartial.rb23 return unless defined?(Fcntl::F_GETFL)
26 r.fcntl(Fcntl::F_SETFL, r.fcntl(Fcntl::F_GETFL) | Fcntl::O_NONBLOCK)
/macosx-10.10/rsync-45/rsync/support/
H A Dsavetransfer.c152 if ((val = fcntl(fd, F_GETFL, 0)) == -1)
165 if ((val = fcntl(fd, F_GETFL, 0)) < 0)
/macosx-10.10/Libc-1044.1.2/stdio/FreeBSD/
H A Dfdopen.c82 if ((fdflags = _fcntl(fd, F_GETFL, 0)) < 0)
H A Dfreopen.c89 if ((dflags = _fcntl(fp->_file, F_GETFL)) < 0) {
/macosx-10.10/apr-32/apr/apr/file_io/netware/
H A Dpipe.c31 if (fcntl(thepipe->filedes, F_GETFL, &flags) != -1)
54 if (fcntl(thepipe->filedes, F_GETFL, &flags) != -1)
/macosx-10.10/ruby-106/ruby/lib/webrick/
H A Dutils.rb25 if defined?(Fcntl::F_GETFL)
26 flag |= io.fcntl(Fcntl::F_GETFL)
/macosx-10.10/cups-408/cups/backend/
H A Dtestbackend.c183 fcntl(back_fds[0], F_SETFL, fcntl(back_fds[0], F_GETFL) | O_NONBLOCK);
184 fcntl(back_fds[1], F_SETFL, fcntl(back_fds[1], F_GETFL) | O_NONBLOCK);
187 fcntl(side_fds[0], F_SETFL, fcntl(side_fds[0], F_GETFL) | O_NONBLOCK);
188 fcntl(side_fds[1], F_SETFL, fcntl(side_fds[1], F_GETFL) | O_NONBLOCK);
/macosx-10.10/OpenSSL098-52/src/demos/tunala/
H A Dip.c60 if(((flags = fcntl(fd, F_GETFL, 0)) < 0) ||
/macosx-10.10/apr-32/apr/apr/file_io/unix/
H A Dpipe.c41 fd_flags = fcntl(thepipe->filedes, F_GETFL, 0);
75 int fd_flags = fcntl(thepipe->filedes, F_GETFL, 0);
/macosx-10.10/ruby-106/ruby/ext/openssl/lib/openssl/
H A Dssl.rb91 flag |= @io.fcntl(Fcntl::F_GETFL) if defined?(Fcntl::F_GETFL)
/macosx-10.10/sudo-73/src/
H A Dselinux.c134 fcntl(se_state.ttyfd, F_GETFL, 0) & ~O_NONBLOCK);
179 fcntl(se_state.ttyfd, F_GETFL, 0) & ~O_NONBLOCK);
/macosx-10.10/uucp-11/uucp/unix/
H A Dpipe.c238 q->iflags = fcntl (q->ord, F_GETFL, 0);
239 q->iwr_flags = fcntl (q->owr, F_GETFL, 0);
/macosx-10.10/bash-94.1.2/bash-3.2/lib/sh/
H A Doslib.c91 if (fcntl (fd1, F_GETFL, 0) == -1)

Completed in 315 milliseconds

123456