Searched refs:EWOULDBLOCK (Results 1 - 25 of 32) sorted by relevance

12

/darwin-on-arm/xnu/bsd/sys/
H A Derrno.h127 #define EWOULDBLOCK EAGAIN /* Operation would block */ macro
/darwin-on-arm/xnu/bsd/kern/
H A Dsubr_log.c182 error = EWOULDBLOCK;
186 error = EWOULDBLOCK;
199 if (error != EWOULDBLOCK)
H A Dkern_synch.c82 error = EWOULDBLOCK;
265 error = EWOULDBLOCK;
H A Dsys_generic.c373 error == EINTR || error == EWOULDBLOCK))
588 error == EINTR || error == EWOULDBLOCK))
681 error == EINTR || error == EWOULDBLOCK))
718 error == EINTR || error == EWOULDBLOCK))
1271 if (error == EWOULDBLOCK)
1553 if (error == EWOULDBLOCK)
2532 if (error == EWOULDBLOCK) {
2779 * EWOULDBLOCK Timeout is too short
2821 error = EWOULDBLOCK;
H A Dtty_pty.c320 error = EWOULDBLOCK;
536 error = EWOULDBLOCK;
757 error = EWOULDBLOCK;
H A Dtty.c1628 if (error == EWOULDBLOCK)
2019 error = EWOULDBLOCK;
2122 if (error == EWOULDBLOCK)
2307 error = EWOULDBLOCK;
2464 return (uio_resid(uio) == count ? EWOULDBLOCK : 0);
2469 if (error == EWOULDBLOCK)
3000 * msleep0:EWOULDBLOCK Timeout (timo) already expired
3005 * returning any errors (e.g. EINTR/EWOULDBLOCK) reported by msleep0. If
H A Dtty_ptmx.c703 error = EWOULDBLOCK;
935 error = EWOULDBLOCK;
1272 error = EWOULDBLOCK;
H A Dkpi_mbuf.c259 error = EWOULDBLOCK;
863 return how == M_WAITOK ? ENOMEM : EWOULDBLOCK;
H A Dkpi_socket.c92 return EWOULDBLOCK;
862 (error == ERESTART || error == EINTR || error == EWOULDBLOCK))
H A Dkern_event.c1307 else if (error == EWOULDBLOCK)
1480 error = EWOULDBLOCK;
2020 error = EWOULDBLOCK;
2092 error = EWOULDBLOCK;
2124 return EWOULDBLOCK;
H A Duipc_syscalls.c325 * :EWOULDBLOCK Operation would block
396 error = EWOULDBLOCK;
802 * <pru_sosend>:EWOULDBLOCK
875 error == EINTR || error == EWOULDBLOCK))
1097 * <pru_soreceive>:EWOULDBLOCK
1168 error == EINTR || error == EWOULDBLOCK))
2312 error == EINTR || error == EWOULDBLOCK)) {
H A Duipc_socket.c1027 if (error == EWOULDBLOCK)
1355 * sblock:EWOULDBLOCK
1435 return (EWOULDBLOCK);
1478 * sosendcheck:EWOULDBLOCK
1872 * EWOULDBLOCK
1874 * sblock:EWOULDBLOCK
1880 * <pru_rcvoob>:EWOULDBLOCK[TCP]
1980 if (error == EWOULDBLOCK || error == EINVAL) {
1983 * EWOULDBLOCK: out-of-band data not
2020 * to sleep (else we will deadlock) or return EWOULDBLOCK (els
[all...]
H A Dkern_credential.c313 * EWOULDBLOCK No resolver registered
364 return(EWOULDBLOCK);
423 if (error == EWOULDBLOCK) {
1955 return (EWOULDBLOCK);
2798 * kauth_resolver_submit:EWOULDBLOCK
2933 * kauth_cred_ismember_gid:EWOULDBLOCK
H A Dkern_aio.c1214 else if ( error == EWOULDBLOCK ) {
/darwin-on-arm/xnu/bsd/nfs/
H A Dkrpc_subr.c411 if ((error == EWOULDBLOCK) && (--maxretries <= 0))
413 } while (error == EWOULDBLOCK);
438 } while (error == EWOULDBLOCK);
454 if (error == EWOULDBLOCK) {
H A Dnfs_lock.c472 error = EWOULDBLOCK;
504 error = EWOULDBLOCK;
510 if (error != EWOULDBLOCK)
551 if (error == EWOULDBLOCK)
557 if ((error == EWOULDBLOCK) && (nmp->nm_state & NFSSTA_RECOVER) && !(flags & R_RECOVER)) {
564 if ((error != EWOULDBLOCK) ||
567 if ((error == EWOULDBLOCK) && (flags & R_RECOVER)) {
H A Dnfs_socket.c441 if ((error != EWOULDBLOCK) && (error || !recv)) {
2267 if ((error != EWOULDBLOCK) && (error || !recv)) {
2615 error = EWOULDBLOCK;
2616 if (error == EWOULDBLOCK) /* inability to send response is considered fatal */
2971 error = EWOULDBLOCK;
3014 (error != EWOULDBLOCK) && (error != EIO) && (nso == nmp->nm_nso)) {
3027 case EWOULDBLOCK:
3119 if (error && (error != EWOULDBLOCK)) {
3180 if (!recv && (error != EWOULDBLOCK))
3184 if ((error != EWOULDBLOCK)
[all...]
H A Dnfs_syscalls.c947 if (error == EWOULDBLOCK)
/darwin-on-arm/xnu/security/
H A Dmac_vfs_subr.c115 if (error == EWOULDBLOCK) {
/darwin-on-arm/xnu/bsd/netat/
H A Daurp_aurpd.c214 if (((*err == 0) || (*err == EWOULDBLOCK)) && events == 0)
224 * a system error other than EWOULDBLOCK, such as EINTR.
226 if (((*err != EWOULDBLOCK) && (*err != 0)) || events & AE_SHUTDOWN)
H A Dddp_r_rtmp.c1444 != EWOULDBLOCK) {
1492 != EWOULDBLOCK) {
/darwin-on-arm/xnu/bsd/miscfs/fifofs/
H A Dfifo_vnops.c319 * checking the receive buffer and if empty set error to EWOULDBLOCK.
320 * If error is set to EWOULDBLOCK we skip the call into soreceive
325 error = (rso->so_rcv.sb_cc == 0) ? EWOULDBLOCK : 0;
330 if (error != EWOULDBLOCK) {
335 /* clear EWOULDBLOCK and return EOF (zero) */
/darwin-on-arm/xnu/bsd/netinet/
H A Din_dhcp.c473 else if ((error != EWOULDBLOCK)) {
561 case EWOULDBLOCK:
668 else if ((error != EWOULDBLOCK)) {
771 else if (error != EWOULDBLOCK) {
H A Dtcp_usrreq.c815 * EWOULDBLOCK
833 error = EWOULDBLOCK;
/darwin-on-arm/xnu/bsd/net/
H A Dbpf.c905 return (EWOULDBLOCK);
921 if (error == EWOULDBLOCK) {

Completed in 272 milliseconds

12