Home
last modified time | relevance | path

Searched refs:ETIMEDOUT (Results 1 – 14 of 14) sorted by relevance

/bionic/libc/bionic/
Dpthread_rwlock.cpp338 if (futex_result == -ETIMEDOUT) { in __pthread_rwlock_timedrdlock()
339 return ETIMEDOUT; in __pthread_rwlock_timedrdlock()
405 if (futex_result == -ETIMEDOUT) { in __pthread_rwlock_timedwrlock()
406 return ETIMEDOUT; in __pthread_rwlock_timedwrlock()
Dbionic_futex.cpp64 return -ETIMEDOUT; in FutexWithTimeout()
Dpthread_cond.cpp207 if (status == -ETIMEDOUT) { in __pthread_cond_timedwait()
208 return ETIMEDOUT; in __pthread_cond_timedwait()
Dpthread_mutex.cpp608 abs_timeout_or_null) == -ETIMEDOUT) { in NormalMutexLock()
609 return ETIMEDOUT; in NormalMutexLock()
785 abs_timeout_or_null) == -ETIMEDOUT) { in MutexLockWithTimeout()
786 return ETIMEDOUT; in MutexLockWithTimeout()
957 if (error == ETIMEDOUT) { in pthread_mutex_lock_timeout_np()
Dsemaphore.cpp263 if (result == -ETIMEDOUT || result == -EINTR) { in __sem_timedwait()
/bionic/libc/private/
Dbionic_time_conversions.h63 return ETIMEDOUT; in check_timespec()
Dbionic_errdefs.h146 __BIONIC_ERRDEF(ETIMEDOUT, "Connection timed out")
/bionic/libc/kernel/uapi/asm-generic/
Derrno.h85 #define ETIMEDOUT 110 macro
/bionic/tests/
Dsemaphore_test.cpp121 ASSERT_ERRNO(ETIMEDOUT); in sem_timedwait_helper()
137 ASSERT_ERRNO(ETIMEDOUT); in sem_timedwait_helper()
Dpthread_test.cpp1117 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper()
1124 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper()
1127 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper()
1731 ASSERT_EQ(ETIMEDOUT, wait_function(&cond, &mutex, &ts)); in pthread_cond_timedwait_timeout_helper()
1738 ASSERT_EQ(ETIMEDOUT, wait_function(&cond, &mutex, &ts)); in pthread_cond_timedwait_timeout_helper()
2431 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper()
2438 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper()
2447 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper()
2531 ASSERT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(result)); in pthread_mutex_timedlock_pi_helper()
/bionic/tests/headers/posix/
Derrno_h.c112 MACRO(ETIMEDOUT); in errno_h()
/bionic/libc/include/bits/
Dthreads_inlines.h45 case ETIMEDOUT: return thrd_timedout; in __bionic_thrd_error()
/bionic/libc/dns/resolv/
Dres_send.c366 terrno = ETIMEDOUT; in res_nsend()
666 errno = ETIMEDOUT; /* no answer obtained */ in res_nsend()
1035 errno = ETIMEDOUT; in retrying_poll()
/bionic/libc/system_properties/
Dsystem_properties.cpp444 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait()