Home
last modified time | relevance | path

Searched refs:FNDELAY (Results 1 – 11 of 11) sorted by relevance

/freebsd/contrib/ntp/libntp/
H A Dsocket.c141 #undef FNDELAY in make_socket_nonblocking()
151 #elif defined(FNDELAY) in make_socket_nonblocking()
152 if (fcntl(fd, F_SETFL, FNDELAY) < 0) { in make_socket_nonblocking()
153 msyslog(LOG_ERR, "fcntl(FNDELAY) fails on fd #%d: %m", in make_socket_nonblocking()
157 #elif defined(O_NDELAY) /* generally the same as FNDELAY */ in make_socket_nonblocking()
H A Diosignal.c37 # define FNDELAY O_NDELAY macro
155 if (fcntl(rio->fd, F_SETFL, FNDELAY|FASYNC) < 0) in init_clock_sig()
189 if (fcntl(rio->fd, F_SETFL, FNDELAY|FASYNC) < 0) in init_clock_sig()
/freebsd/contrib/ntp/include/
H A Dntp_io.h50 #ifndef FNDELAY
52 # define FNDELAY O_NONBLOCK macro
/freebsd/crypto/openssl/crypto/bio/
H A Dbio_sock.c322 # elif defined(F_GETFL) && defined(F_SETFL) && (defined(O_NONBLOCK) || defined(FNDELAY)) in BIO_socket_nbio()
334 l &= ~FNDELAY; /* BSD4.x */ in BIO_socket_nbio()
340 l |= FNDELAY; /* BSD4.x */ in BIO_socket_nbio()
/freebsd/contrib/ntp/sntp/libopts/compat/
H A Dcompat.h149 # define O_NONBLOCK FNDELAY
/freebsd/sys/sys/
H A Dfcntl.h195 #define FNDELAY O_NONBLOCK /* compat */ macro
/freebsd/share/doc/psd/21.ipc/
H A Dspell.ok35 FNDELAY
/freebsd/sbin/ipf/ipsend/
H A Dsock.c260 if (fcntl(fd, F_SETFL, FNDELAY) == -1) in do_socket()
/freebsd/contrib/tcsh/
H A Dtc.func.c1706 # ifndef FNDELAY in fixio()
1707 # define FNDELAY 0 in fixio() macro
1719 FNDELAY|_FNDELAY|FNDLEAY); /* whew! */ in fixio()
/freebsd/contrib/ntp/ntpdate/
H A Dntpdate.c1820 # if defined(FNDELAY) in init_io()
1821 if (fcntl(fd[nbsock], F_SETFL, FNDELAY) < 0) { in init_io()
/freebsd/contrib/ee/
H A Dnew_curse.c2280 in_value = fcntl(0, F_SETFL, old_arg | FNDELAY);