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

12

/fuchsia/zircon/third_party/ulib/musl/pthread/
H A Dpthread_setconcurrency.c8 return EAGAIN;
H A Dpthread_key.c8 return tss_create(k, dtor) == thrd_success ? 0 : EAGAIN;
H A Dpthread_rwlock_tryrdlock.c11 return EAGAIN;
H A Dsem_trywait.c11 errno = EAGAIN;
H A Dpthread_mutex_trylock.c12 return EAGAIN;
H A Dpthread_create.c56 return EAGAIN;
107 return status == ZX_ERR_ACCESS_DENIED ? EPERM : EAGAIN;
/fuchsia/zircon/third_party/ulib/musl/src/thread/
H A Dthrd_create.c16 case EAGAIN:
H A Dtss.c28 return EAGAIN;
/fuchsia/zircon/kernel/lib/libc/include/
H A Derrno.h28 #define EAGAIN 11 /* No more processes */ macro
141 #define EWOULDBLOCK EAGAIN /* Operation would block */
/fuchsia/zircon/third_party/ulib/musl/include/bits/
H A Derrno.h11 #define EAGAIN 11 macro
41 #define EWOULDBLOCK EAGAIN
/fuchsia/zircon/system/utest/pty/
H A Dpty-test.c31 if (errno == EAGAIN) {
50 if (errno == EAGAIN) {
84 ASSERT_EQ(errno, EAGAIN, "");
86 ASSERT_EQ(errno, EAGAIN, "");
174 ASSERT_EQ(errno, EAGAIN, "");
176 ASSERT_EQ(errno, EAGAIN, "");
/fuchsia/zircon/system/utest/fdio/
H A Dfdio_socketpair.c59 static_assert(EAGAIN == EWOULDBLOCK, "Assuming EAGAIN and EWOULDBLOCK have same value");
74 EXPECT_EQ(errno, EAGAIN, "");
78 EXPECT_EQ(errno, EAGAIN, "");
145 EXPECT_EQ(errno, EAGAIN, "errno after read after SHUT_WR");
350 ASSERT_EQ(errno, EAGAIN, "send should eventually return EAGAIN when full");
383 ASSERT_EQ(errno, EAGAIN, "send should eventually return EAGAIN when full");
H A Dfdio_handle_fd.c257 ASSERT_EQ(EAGAIN, errno, "errno incorrect");
/fuchsia/zircon/third_party/ulib/musl/src/network/
H A Dgethostbyaddr_r.c55 return EAGAIN;
/fuchsia/zircon/system/host/bootserver/
H A Dtftp.c122 ((errno == EAGAIN) || (errno == EWOULDBLOCK) || (errno == ENOBUFS)));
156 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
270 result = -EAGAIN;
H A Dnetboot.c39 if (retry_allowed && errno == EAGAIN) {
H A Dbootserver.c163 while ((result = tftp_xfer(addr, local_name, remote_name)) == -EAGAIN) {
/fuchsia/zircon/third_party/ulib/musl/src/errno/
H A D__strerror.h24 E(EAGAIN, "Resource temporarily unavailable")
/fuchsia/zircon/system/host/netprotocol/
H A Dnetcp.c124 ((errno == EAGAIN) || (errno == EWOULDBLOCK) ||
158 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
H A Dnetprotocol.c289 } else if (r < 0 && errno != EAGAIN && errno != EINTR) {
393 if ((errno == EAGAIN) || (errno == EWOULDBLOCK)) {
/fuchsia/zircon/system/host/xdc-server/
H A Dxdc-server.cpp85 if (errno == EAGAIN) {
122 } else if (n == EAGAIN) {
/fuchsia/zircon/system/ulib/tftp/
H A Dtftp-example.c95 if ((errno == EAGAIN) || (errno == EWOULDBLOCK))
/fuchsia/zircon/third_party/ulib/jemalloc/src/
H A Dctl.c937 ret = EAGAIN;
964 ret = EAGAIN;
982 ret = EAGAIN;
1328 return (EAGAIN);
1345 ret = EAGAIN;
1464 ret = EAGAIN;
1983 ret = EAGAIN;
H A Djemalloc.c2628 return (EAGAIN);
2644 return (EAGAIN);
2661 return (EAGAIN);
/fuchsia/zircon/scripts/
H A Dsymbolize197 # On BSD platforms there are cases where writing to stdout can return EAGAIN.
210 if e.errno == errno.EAGAIN:

Completed in 733 milliseconds

12