Searched refs:EWOULDBLOCK (Results 51 - 75 of 254) sorted by relevance

1234567891011

/freebsd-11-stable/sys/dev/tws/
H A Dtws_user.c111 if ( error == EWOULDBLOCK ) {
169 if (( req->state != TWS_REQ_STATE_COMPLETE ) && ( error == EWOULDBLOCK )) {
/freebsd-11-stable/contrib/netbsd-tests/include/
H A Dt_errno.c742 #ifdef EWOULDBLOCK
747 atf_tc_fail_nonfatal("EWOULDBLOCK not defined");
/freebsd-11-stable/contrib/openbsm/compat/
H A Dpidfile.h135 if (errno == EWOULDBLOCK && pidptr != NULL) {
/freebsd-11-stable/lib/libutil/
H A Dpidfile.c129 if (errno == EWOULDBLOCK) {
/freebsd-11-stable/sys/nfsclient/
H A Dnfs.h145 (e) != ERESTART && (e) != EWOULDBLOCK && \
/freebsd-11-stable/sys/rpc/
H A Dsvc_dg.c189 if (error == EWOULDBLOCK) {
194 * fails with EWOULDBLOCK. The pool lock protects us
H A Dclnt_dg.c568 error = EWOULDBLOCK;
636 * on the list. If we got EWOULDBLOCK, we may want to
639 if (error != EWOULDBLOCK) {
652 errp->re_errno = EWOULDBLOCK;
1073 if (error == EWOULDBLOCK)
/freebsd-11-stable/sys/dev/xen/xenstore/
H A Dxenstore_dev.c88 if (error && error != EWOULDBLOCK)
/freebsd-11-stable/sys/kern/
H A Dsubr_log.c156 return (EWOULDBLOCK);
H A Dkern_alq.c524 * Fail to perform the write and return EWOULDBLOCK if:
538 return (EWOULDBLOCK);
601 ret = EWOULDBLOCK;
H A Dkern_thr.c526 error = EWOULDBLOCK;
546 if (error == EWOULDBLOCK)
/freebsd-11-stable/sys/fs/nfsclient/
H A Dnfs_clnfsiod.c338 if ((error == 0) || (error == EWOULDBLOCK))
/freebsd-11-stable/contrib/libpcap/
H A Dpcap-nit.c115 if (errno == EWOULDBLOCK)
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Darc4random.c96 errno == EWOULDBLOCK)
/freebsd-11-stable/sys/compat/linuxkpi/common/include/linux/
H A Dwait.h165 if (__ret == -EWOULDBLOCK) \
/freebsd-11-stable/sys/dev/snp/
H A Dsnp.c174 error = EWOULDBLOCK;
/freebsd-11-stable/bin/sh/
H A Dinput.c167 if (parsefile->fd == 0 && errno == EWOULDBLOCK) {
/freebsd-11-stable/contrib/sendmail/libsm/
H A Dlocal.h289 ** EAGAIN/EWOULDBLOCK (from a nonblocking) then it's a real error.
295 ((ret) < 0 && errno != EAGAIN && errno != EWOULDBLOCK) || \
/freebsd-11-stable/contrib/sendmail/mail.local/
H A Dmail.local.c1818 #if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN && EWOULDBLOCK != EDEADLK
1819 case EWOULDBLOCK: /* Operation would block. */
/freebsd-11-stable/sys/dev/tpm/
H A Dtpm.c569 if (rv && rv != EWOULDBLOCK) {
612 if (rv && rv != EWOULDBLOCK) {
722 if (rv && rv != EWOULDBLOCK) {
1237 if (rv && rv != EWOULDBLOCK)
1311 if (rv && rv != EWOULDBLOCK)
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnet/
H A Dsys_bsd.c930 if (c < 0 && errno == EWOULDBLOCK) {
951 if (c < 0 && errno == EWOULDBLOCK) {
/freebsd-11-stable/crypto/heimdal/appl/telnet/telnetd/
H A Dutility.c126 if (errno == EWOULDBLOCK || errno == EINTR)
293 if (errno == EWOULDBLOCK || errno == EINTR)
/freebsd-11-stable/sys/netsmb/
H A Dsmb_trantcp.c234 if (error == EWOULDBLOCK) { /* Timeout */
398 } while (error == EWOULDBLOCK || error == EINTR ||
/freebsd-11-stable/sys/dev/drm2/radeon/
H A Dradeon_fence.c327 if (r == EWOULDBLOCK) {
522 if (r == EWOULDBLOCK) {
/freebsd-11-stable/sys/net/
H A Dif_arcsubr.c135 return (error == EWOULDBLOCK ? 0 : error);
177 return (error == EWOULDBLOCK ? 0 : error);

Completed in 306 milliseconds

1234567891011