Home
last modified time | relevance | path

Searched refs:EWOULDBLOCK (Results 1 – 25 of 299) sorted by relevance

12345678910>>...12

/freebsd-13-stable/crypto/openssl/crypto/bio/
HDbss_fd.c244 # ifdef EWOULDBLOCK in BIO_fd_non_fatal_error()
246 # if WSAEWOULDBLOCK != EWOULDBLOCK in BIO_fd_non_fatal_error()
247 case EWOULDBLOCK: in BIO_fd_non_fatal_error()
250 case EWOULDBLOCK: in BIO_fd_non_fatal_error()
263 # if EWOULDBLOCK != EAGAIN in BIO_fd_non_fatal_error()
HDbss_sock.c247 # ifdef EWOULDBLOCK in BIO_sock_non_fatal_error()
249 # if WSAEWOULDBLOCK != EWOULDBLOCK in BIO_sock_non_fatal_error()
250 case EWOULDBLOCK: in BIO_sock_non_fatal_error()
253 case EWOULDBLOCK: in BIO_sock_non_fatal_error()
266 # if EWOULDBLOCK != EAGAIN in BIO_sock_non_fatal_error()
/freebsd-13-stable/sys/contrib/openzfs/include/os/freebsd/spl/sys/
HDcondvar.h123 if (rc == EWOULDBLOCK) in cv_timedwait()
138 if (rc == EWOULDBLOCK) in cv_timedwait_sig()
173 if (rc == EWOULDBLOCK) in cv_timedwait_hires()
201 case EWOULDBLOCK: in cv_timedwait_sig_hires()
/freebsd-13-stable/sys/dev/smbus/
HDsmbconf.c76 error = EWOULDBLOCK; in smbus_error()
102 error = EWOULDBLOCK; in smbus_poll()
133 } while (error == EWOULDBLOCK); in smbus_request_bus()
/freebsd-13-stable/tools/regression/kthread/kld/
HDkthrdlk.c69 if (error == EWOULDBLOCK) in thr_suspender()
164 if (ret == EWOULDBLOCK) { in kthrdlk_done()
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
HDerrno.h199 # ifndef EWOULDBLOCK
200 # define EWOULDBLOCK 9930 macro
/freebsd-13-stable/contrib/apr/network_io/unix/
HDsendrecv.c44 while (rv == -1 && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_send()
84 while ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_recv()
124 while ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_sendto()
159 while ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_recvfrom()
215 while ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_sendv()
339 while ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_sendfile()
770 while ((rc == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_sendfile()
917 while ((rv == -1) && (errno == EAGAIN || errno == EWOULDBLOCK) in apr_socket_sendfile()
/freebsd-13-stable/sys/dev/random/
HDrandomdev.c150 if (error == EWOULDBLOCK) in randomdev_wait_until_seeded()
180 error = EWOULDBLOCK;
228 if (error == EWOULDBLOCK)
/freebsd-13-stable/crypto/openssh/
HDatomicio.c76 } else if (errno == EAGAIN || errno == EWOULDBLOCK) { in atomicio6()
138 } else if (errno == EAGAIN || errno == EWOULDBLOCK) { in atomiciov6()
/freebsd-13-stable/contrib/libedit/
HDread.c151 #ifdef EWOULDBLOCK in read__fixio()
152 case EWOULDBLOCK: in read__fixio()
159 #if defined(EWOULDBLOCK) && EWOULDBLOCK != EAGAIN in read__fixio()
/freebsd-13-stable/contrib/ofed/librdmacm/examples/
HDudpong.c188 } while (ret < 0 && (errno == EWOULDBLOCK || errno == EAGAIN)); in svr_send()
215 } while (ret < 0 && (errno == EWOULDBLOCK || errno == EAGAIN)); in svr_recv()
327 } while (ret < 0 && (errno == EWOULDBLOCK || errno == EAGAIN)); in client_send()
350 if (ret < 0 && errno != EWOULDBLOCK && errno != EAGAIN) in client_recv()
HDriostream.c166 } else if (errno != EWOULDBLOCK && errno != EAGAIN) { in send_msg()
195 } else if (errno != EWOULDBLOCK && errno != EAGAIN) { in send_xfer()
224 } else if (errno != EWOULDBLOCK && errno != EAGAIN) { in recv_msg()
426 } while (rs < 0 && (errno == EAGAIN || errno == EWOULDBLOCK)); in server_connect()
/freebsd-13-stable/sys/dev/ppbus/
HDppb_base.c83 if (error != EWOULDBLOCK) in ppb_poll_bus()
88 return (EWOULDBLOCK); in ppb_poll_bus()
/freebsd-13-stable/tests/sys/fifo/
HDfifo_kqueue.c83 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()
185 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()
241 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()
268 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()
/freebsd-13-stable/sys/kern/
HDsubr_autoconf.c163 EWOULDBLOCK) { in boot_run_interrupt_driven_config_hooks()
286 0, "confhd", hz) == EWOULDBLOCK) { in config_intrhook_drain()
HDsubr_stack.c182 if (error == EWOULDBLOCK) in stack_sbuf_print_flags()
260 if (error == 0 || error == EWOULDBLOCK) in stack_symbol()
HDtty_ttydisc.c233 return (EWOULDBLOCK); in ttydisc_read_canonical()
298 return (EWOULDBLOCK); in ttydisc_read_raw_no_timer()
350 return (EWOULDBLOCK); in ttydisc_read_raw_read_timer()
354 return (error == EWOULDBLOCK ? 0 : error); in ttydisc_read_raw_read_timer()
399 return (EWOULDBLOCK); in ttydisc_read_raw_interbyte_timer()
633 error = EWOULDBLOCK; in ttydisc_write()
/freebsd-13-stable/contrib/ntp/libntp/lib/isc/win32/include/isc/
HDnet.h197 #undef EWOULDBLOCK
198 #define EWOULDBLOCK WSAEWOULDBLOCK macro
/freebsd-13-stable/sys/dev/ppc/
HDppc_isa.c215 } while (error == EWOULDBLOCK); in ppc_isa_write()
242 if (error != EWOULDBLOCK) { in ppc_isa_write()
/freebsd-13-stable/contrib/bearssl/tools/
HDsslio.c652 if (err == EWOULDBLOCK in run_ssl_engine()
659 if (errno == EINTR || errno == EWOULDBLOCK) { in run_ssl_engine()
694 if (err == EWOULDBLOCK in run_ssl_engine()
701 if (errno == EINTR || errno == EWOULDBLOCK) { in run_ssl_engine()
/freebsd-13-stable/sys/dev/twa/
HDtw_osl_share.h102 #define TW_OSL_EWOULDBLOCK EWOULDBLOCK /* sleep timed out */
/freebsd-13-stable/crypto/openssh/openbsd-compat/
HDbsd-flock.c73 errno = EWOULDBLOCK; in flock()
HDbsd-getentropy.c78 errno == EWOULDBLOCK) in _ssh_compat_getentropy()
/freebsd-13-stable/contrib/apr/include/
HDapr_errno.h727 #elif defined(EWOULDBLOCK)
728 #define APR_EAGAIN EWOULDBLOCK
1172 || (s) == EWOULDBLOCK \
1271 #if !defined(EWOULDBLOCK) || !defined(EAGAIN)
1273 #elif (EWOULDBLOCK == EAGAIN)
1277 || (s) == EWOULDBLOCK)
/freebsd-13-stable/tests/sys/kern/pipe/
HDpipe_kqueue_test.c79 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()
258 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()
330 ATF_REQUIRE(errno == EAGAIN || errno == EWOULDBLOCK); in ATF_TC_BODY()

12345678910>>...12