Searched refs:EWOULDBLOCK (Results 126 - 150 of 254) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/nvi/common/
H A Dexf.c1511 * as returning EWOULDBLOCK; add EAGAIN for good measure, and assume
1520 #ifdef EWOULDBLOCK
1521 || errno == EWOULDBLOCK
/freebsd-11-stable/contrib/ofed/libibumad/
H A Dumad.c879 if (n == -EWOULDBLOCK) {
881 errno = EWOULDBLOCK;
/freebsd-11-stable/sys/dev/etherswitch/rtl8366/
H A Drtl8366rb.c430 return (EWOULDBLOCK);
450 return (EWOULDBLOCK);
/freebsd-11-stable/sys/compat/cloudabi/
H A Dcloudabi_futex.c848 if (error == EWOULDBLOCK &&
875 return (error == EWOULDBLOCK ? ETIMEDOUT : error);
/freebsd-11-stable/stand/kshim/
H A Dbsd_kernel.c356 return (EWOULDBLOCK); /* not allowed */
383 return (EWOULDBLOCK); /* not allowed */
/freebsd-11-stable/sys/ofed/drivers/infiniband/core/
H A Dib_addr.c433 if (error == EWOULDBLOCK || error == EAGAIN)
629 if (error == EWOULDBLOCK || error == EAGAIN)
/freebsd-11-stable/sys/dev/vkbd/
H A Dvkbd.c331 error = EWOULDBLOCK;
393 error = EWOULDBLOCK;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A Draw_ostream.cpp717 // Ideally we wouldn't ever see EAGAIN or EWOULDBLOCK here, since
724 #ifdef EWOULDBLOCK
725 || errno == EWOULDBLOCK
/freebsd-11-stable/contrib/unbound/smallapp/
H A Dunbound-control.c683 #ifdef EWOULDBLOCK
684 if(error == EWOULDBLOCK)
/freebsd-11-stable/crypto/openssh/
H A Dchannels.c1436 if (errno != EINTR && errno != EWOULDBLOCK &&
1604 if (errno != EINTR && errno != EWOULDBLOCK &&
1738 ((errno == EAGAIN || errno == EWOULDBLOCK) && !force)))
1810 errno == EWOULDBLOCK))
1829 (errno == EINTR || errno == EAGAIN || errno == EWOULDBLOCK))
1884 errno == EWOULDBLOCK))
1902 errno == EWOULDBLOCK) && !c->detach_close)))
H A Dserverloop.c297 errno != EWOULDBLOCK) {
/freebsd-11-stable/contrib/ofed/librdmacm/
H A Drsocket.c1270 else if (errno == EAGAIN || errno == EWOULDBLOCK)
1300 if (errno == EAGAIN || errno == EWOULDBLOCK)
1329 if (errno == EAGAIN || errno == EWOULDBLOCK)
1361 if (errno == EAGAIN || errno == EWOULDBLOCK)
1394 if (errno == EAGAIN || errno == EWOULDBLOCK) {
2039 ret = ERR(EWOULDBLOCK);
2067 if (!ret || nonblock || errno != EWOULDBLOCK)
2202 ret = ERR(EWOULDBLOCK);
2228 if (!ret || nonblock || errno != EWOULDBLOCK)
/freebsd-11-stable/sys/kern/
H A Duipc_syscalls.c385 error = EWOULDBLOCK;
887 error == EINTR || error == EWOULDBLOCK))
1083 error == EINTR || error == EWOULDBLOCK))
/freebsd-11-stable/sbin/routed/
H A Dinput.c78 if (cc < 0 && errno != EWOULDBLOCK)
/freebsd-11-stable/sys/netsmb/
H A Dsmb_iod.c304 if (error == EWOULDBLOCK)
/freebsd-11-stable/sys/dev/nand/
H A Dnfc_fsl.c498 error = EWOULDBLOCK;
/freebsd-11-stable/sys/rpc/
H A Dclnt_bck.c374 case EWOULDBLOCK:
/freebsd-11-stable/sys/dev/ichsmb/
H A Dichsmb.c646 case EWOULDBLOCK:
/freebsd-11-stable/sys/dev/iscsi_initiator/
H A Disc_sm.c556 if(msleep(&sp->flags, &sp->io_mtx, PRIBIO, "isc_proc", hz*30) == EWOULDBLOCK) {
/freebsd-11-stable/sys/geom/bde/
H A Dg_bde_work.c647 if (error == EWOULDBLOCK) {
/freebsd-11-stable/usr.sbin/lpr/lpd/
H A Dlpd.c286 if (errno == EWOULDBLOCK) /* active daemon present */
/freebsd-11-stable/sys/dev/ppbus/
H A Dppb_1284.c421 if (error && error != EWOULDBLOCK)
/freebsd-11-stable/bin/pkill/
H A Dpkill.c826 if (errno != EWOULDBLOCK) {
/freebsd-11-stable/sys/dev/adb/
H A Dadb_mouse.c511 return EWOULDBLOCK;
/freebsd-11-stable/sys/dev/evdev/
H A Duinput.c263 ret = EWOULDBLOCK;

Completed in 221 milliseconds

1234567891011