Searched refs:FIONBIO (Results 1 - 25 of 81) sorted by relevance

1234

/freebsd-11-stable/sys/sys/
H A Dfilio.h47 #define FIONBIO _IOW('f', 126, int) /* set/clear non-blocking i/o */ macro
/freebsd-11-stable/contrib/ntp/libntp/
H A Dsocket.c137 /* in vxWorks we use FIONBIO, but the others are defined for old
163 #elif defined(FIONBIO)
167 if (ioctl(fd, FIONBIO, &on) < 0) {
169 "ioctl(FIONBIO) fails on fd #%d: %m",
/freebsd-11-stable/libexec/getty/
H A Dchat.c86 ioctl(STDIN_FILENO, FIONBIO, &on);
98 return ioctl(STDIN_FILENO, FIONBIO, &off);
480 ioctl(STDIN_FILENO, FIONBIO, &off);
/freebsd-11-stable/contrib/gdb/gdb/
H A Dser-tcp.c29 #include <sys/filio.h> /* For FIONBIO. */
32 #include <sys/ioctl.h> /* For FIONBIO. */
112 ioctl (scb->fd, FIONBIO, &tmp);
180 ioctl (scb->fd, FIONBIO, &tmp);
/freebsd-11-stable/sys/dev/null/
H A Dnull.c114 case FIONBIO:
135 case FIONBIO:
/freebsd-11-stable/tools/tools/netrate/tcpconnect/
H A Dtcpconnect.c86 if (fcntl(s, F_SETFL, FIONBIO, &i) < 0)
/freebsd-11-stable/crypto/openssl/apps/
H A Ds_time.c140 #ifdef FIONBIO
164 #ifdef FIONBIO
191 #ifdef FIONBIO
277 #ifdef FIONBIO
H A Ds_server.c201 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
202 # undef FIONBIO macro
302 #ifdef FIONBIO
472 # ifdef FIONBIO
557 #ifdef FIONBIO
1164 #ifdef FIONBIO
1331 #ifdef FIONBIO
1337 #ifdef FIONBIO
2202 #ifdef FIONBIO
2208 if (BIO_socket_ioctl(s, FIONBIO,
[all...]
H A Ds_client.c175 /* FIONBIO used as a switch to enable ioctl, and that isn't in VMS < 7.0 */
176 # undef FIONBIO macro
207 #ifdef FIONBIO
348 #ifdef FIONBIO
781 #ifdef FIONBIO
1070 #ifdef FIONBIO
1459 #ifdef FIONBIO
1463 if (BIO_socket_ioctl(s, FIONBIO, &l) < 0) {
/freebsd-11-stable/contrib/amd/amd/
H A Drpc_fwd.c153 #ifdef FIONBIO
155 #endif /* FIONBIO */
186 #ifdef FIONBIO
187 && ioctl(fwd_sock, FIONBIO, &on) < 0
188 #endif /* FIONBIO */
/freebsd-11-stable/tests/sys/fifo/
H A Dfifo_misc.c197 if (test_ioctl_setclearflag(reader_fd, FIONBIO, __func__,
198 "reader_fd", "FIONBIO") < 0) {
203 if (test_ioctl_setclearflag(writer_fd, FIONBIO, __func__,
204 "writer_fd", "FIONBIO") < 0) {
/freebsd-11-stable/usr.bin/rsh/
H A Drsh.c232 (void)ioctl(rfd2, FIONBIO, &one);
233 (void)ioctl(rem, FIONBIO, &one);
/freebsd-11-stable/contrib/apr/file_io/unix/
H A Dpipe.c59 if (ioctl(thepipe->filedes, FIONBIO, &on, sizeof(on)) < 0) {
95 if (ioctl(thepipe->filedes, FIONBIO, &on, sizeof(on)) < 0) {
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dsys_bsd.c509 ioctl(tin, FIONBIO, (char *)&onoff);
510 ioctl(tout, FIONBIO, (char *)&onoff);
631 ioctl(fd, FIONBIO, (char *)&onoff);
/freebsd-11-stable/contrib/telnet/telnet/
H A Dsys_bsd.c677 ioctl(tin, FIONBIO, (char *)&onoff);
678 ioctl(tout, FIONBIO, (char *)&onoff);
735 ioctl(fd, FIONBIO, (char *)&onoff);
/freebsd-11-stable/libexec/rlogind/
H A Drlogind.c312 ioctl(f, FIONBIO, &on);
313 ioctl(master, FIONBIO, &on);
/freebsd-11-stable/crypto/openssl/ssl/
H A Dssl_task.c142 #ifdef FIONBIO
/freebsd-11-stable/sys/kern/
H A Dsubr_log.c265 case FIONBIO:
/freebsd-11-stable/sys/compat/svr4/
H A Dsvr4_filio.c235 case SVR4_FIONBIO: cmd = FIONBIO; break;
/freebsd-11-stable/usr.sbin/bluetooth/btpand/
H A Dchannel.c97 if (ioctl(fd, FIONBIO, &n) == -1) {
H A Dserver.c168 if (ioctl(fd, FIONBIO, &n) == -1) {
/freebsd-11-stable/usr.sbin/ypbind/
H A Dyp_ping.c272 ioctl(sock, FIONBIO, &dontblock);
/freebsd-11-stable/crypto/openssl/crypto/bio/
H A Db_sock.c978 # ifdef FIONBIO
979 ret = BIO_socket_ioctl(s, FIONBIO, &l);
/freebsd-11-stable/lib/libedit/
H A Dread.c166 #ifdef FIONBIO
170 if (ioctl(fd, FIONBIO, &zero) == -1)
175 #endif /* FIONBIO */
/freebsd-11-stable/contrib/telnet/telnetd/
H A Dtelnetd.c861 (void) ioctl(f, FIONBIO, (char *)&on);
862 (void) ioctl(p, FIONBIO, (char *)&on);

Completed in 385 milliseconds

1234