Searched refs:EAGAIN (Results 1 - 25 of 59) sorted by relevance

123

/darwin-on-arm/xnu/bsd/sys/
H A Derrno.h96 /* 11 was EAGAIN */
126 #define EAGAIN 35 /* Resource temporarily unavailable */ macro
127 #define EWOULDBLOCK EAGAIN /* Operation would block */
/darwin-on-arm/xnu/bsd/netat/
H A Daurp_cfg.c81 return EAGAIN;
H A Datp_open.c176 return(EAGAIN);
H A Datp_write.c317 atp_iocnak(atp, m, EAGAIN);
349 atp_iocnak(atp, m, EAGAIN);
/darwin-on-arm/xnu/bsd/vm/
H A Ddp_backing_file.c317 error = EAGAIN;
496 error = EAGAIN;
499 error = EAGAIN;
544 error = EAGAIN; /* XXX why EAGAIN ? */
H A Dvnode_pager.c665 * a) In the case of decmpfs, however, we may return an error (EAGAIN) to avoid
673 if(error == EAGAIN) {
/darwin-on-arm/xnu/bsd/kern/
H A Dkern_aio.c537 result = EAGAIN;
1092 * set appropriately - EAGAIN if timeout elapses or EINTR if an interrupt
1149 error = EAGAIN;
1165 error = EAGAIN;
1197 * we return EAGAIN (35) for timeout expiration and EINTR (4) when a signal
1216 error = EAGAIN;
1347 result = EAGAIN;
1492 call_result = EAGAIN;
1498 call_result = EAGAIN;
1510 call_result = EAGAIN;
[all...]
H A Dkern_fork.c214 * Returns: EAGAIN Administrative limit reached
376 return (EAGAIN);
389 err = EAGAIN;
534 err = EAGAIN;
839 * EAGAIN Resource unavailable, try again
H A Dsysv_shm.c669 return EAGAIN;
846 if (error == EAGAIN)
H A Dsys_generic.c969 * EAGAIN Nonconformant error if allocation fails
1016 * Note: If this process fails, select() will return EAGAIN; this
1034 return (EAGAIN);
1039 return (EAGAIN);
1446 return (EAGAIN);
1451 error = EAGAIN;
H A Dsys_pipe.c810 error = EAGAIN;
1057 error = EAGAIN;
H A Dsysv_msg.c857 eval = EAGAIN;
1311 eval = EAGAIN;
H A Dubc_subr.c2593 error = EAGAIN;
2668 if (error == EAGAIN) {
2670 * See above: error is EAGAIN if we were asked
H A Dkern_lockf.c149 * lf_setlock:EAGAIN
431 * EAGAIN
475 return (EAGAIN);
H A Dkern_mman.c1054 return EAGAIN;
/darwin-on-arm/xnu/tools/tests/xnu_quick_test/
H A Dsema_tests.c122 /* get the lock - should return EAGAIN (EWOULDBLOCK) */
126 if ( my_err != EAGAIN ) {
/darwin-on-arm/xnu/tools/tests/libMicro/
H A Dconnection.c269 errno != EAGAIN))
/darwin-on-arm/xnu/bsd/security/audit/
H A Daudit_bsm_errno.c93 { BSM_ERRNO_EAGAIN, EAGAIN, ES("Resource temporarily unavailable") },
/darwin-on-arm/xnu/tools/tests/libMicro/apple/
H A Dlmbench_select_tcp.c404 || errno == EAGAIN) {
/darwin-on-arm/xnu/bsd/hfs/
H A Dhfs_search.c414 err = EAGAIN; /* signal to the user to call searchfs again */
417 err = EAGAIN;
423 err = EAGAIN;
H A Dhfs_vfsutils.c3102 if (error == EAGAIN) {
3120 if (error == EAGAIN) {
3150 if (error == EAGAIN) {
H A Dhfs_readwrite.c256 if (retval == EAGAIN) {
690 if (retval == EAGAIN) {
692 * EAGAIN indicates that we still have I/O to do, but
697 * did manage to do some I/O before returning EAGAIN
801 if (retval == EAGAIN) {
3886 } else if (error == EAGAIN) {
3888 * EAGAIN indicates someone else already holds the compression lock...
/darwin-on-arm/xnu/bsd/netinet6/
H A Din6_src.c1258 return (EAGAIN);
1282 return (EAGAIN);
1299 return (EAGAIN);
/darwin-on-arm/xnu/bsd/nfs/
H A Dnfs_lock.c393 return (EAGAIN);
453 if (error && error != EAGAIN)
H A Dnfs_bio.c547 while ((error = nfs_buf_acquire(bp, 0, 0, 0)) == EAGAIN);
1355 return (EAGAIN);
3491 if (error != EAGAIN) {
3703 if (error != EAGAIN) {
3721 if (error != EAGAIN) {

Completed in 206 milliseconds

123