Home
last modified time | relevance | path

Searched refs:EAGAIN (Results 1 – 19 of 19) sorted by relevance

/bionic/tests/
Deventfd_test.cpp37 ASSERT_ERRNO(EAGAIN); in TEST()
91 ASSERT_ERRNO(EAGAIN); in TEST()
Dsys_sem_test.cpp67 ASSERT_ERRNO(EAGAIN); in TEST()
Dsemaphore_test.cpp69 ASSERT_ERRNO(EAGAIN); in TEST()
Dpthread_test.cpp108 if (rv == EAGAIN) { in TEST()
123 ASSERT_EQ(EAGAIN, rv); in TEST()
296 ASSERT_EQ(EAGAIN, pthread_create(&t, &attributes, IdFn, nullptr)); in TEST()
2957 if (status != EAGAIN) break; in TEST()
Dsignal_test.cpp785 ASSERT_ERRNO(EAGAIN); in TEST()
Dunistd_test.cpp1334 ASSERT_ERRNO(EAGAIN); in TEST()
/bionic/libc/kernel/uapi/asm-generic/
Derrno-base.h19 #define EAGAIN 11 macro
Derrno.h16 #define EWOULDBLOCK EAGAIN
/bionic/libc/bionic/
Dpthread_create.cpp276 if (attr->guard_size < unaligned_guard_size) return EAGAIN; in __allocate_thread()
279 if (mapping.mmap_base == nullptr) return EAGAIN; in __allocate_thread()
286 if (mapping.mmap_base == nullptr) return EAGAIN; in __allocate_thread()
Dpthread_key.cpp135 return EAGAIN; in pthread_key_create()
Dpthread_rwlock.cpp280 return EAGAIN; in __pthread_rwlock_tryrdlock()
298 if (result == 0 || result == EAGAIN) { in __pthread_rwlock_timedrdlock()
Dsemaphore.cpp311 errno = EAGAIN; in sem_trywait()
Dmalloc_heapprofd.cpp474 errno = EAGAIN; in DispatchReset()
Dsignal.cpp301 if (errno != EAGAIN && errno != EINTR) return errno; in sigwait64()
Dpthread_mutex.cpp167 return EAGAIN; in PIMutexTryLock()
674 return EAGAIN; in RecursiveIncrement()
/bionic/tests/headers/posix/
Derrno_h.c41 MACRO(EAGAIN); in errno_h()
/bionic/libc/private/
Dbionic_errdefs.h49 __BIONIC_ERRDEF(EAGAIN, "Try again")
/bionic/benchmarks/tests/
Dinterface_test.cpp125 if (bytes == -1 && errno == EAGAIN) { in RunTest()
/bionic/libc/malloc_debug/tests/
Dmalloc_debug_system_tests.cpp294 if (bytes == -1 && errno == EAGAIN) { in InternalExec()