Searched refs:ETIMEDOUT (Results 1 – 14 of 14) sorted by relevance
/bionic/libc/bionic/ |
D | pthread_rwlock.cpp | 338 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()
|
D | bionic_futex.cpp | 64 return -ETIMEDOUT; in FutexWithTimeout()
|
D | pthread_cond.cpp | 207 if (status == -ETIMEDOUT) { in __pthread_cond_timedwait() 208 return ETIMEDOUT; in __pthread_cond_timedwait()
|
D | pthread_mutex.cpp | 608 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()
|
D | semaphore.cpp | 263 if (result == -ETIMEDOUT || result == -EINTR) { in __sem_timedwait()
|
/bionic/libc/private/ |
D | bionic_time_conversions.h | 63 return ETIMEDOUT; in check_timespec()
|
D | bionic_errdefs.h | 146 __BIONIC_ERRDEF(ETIMEDOUT, "Connection timed out")
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | errno.h | 85 #define ETIMEDOUT 110 macro
|
/bionic/tests/ |
D | semaphore_test.cpp | 121 ASSERT_ERRNO(ETIMEDOUT); in sem_timedwait_helper() 137 ASSERT_ERRNO(ETIMEDOUT); in sem_timedwait_helper()
|
D | pthread_test.cpp | 1117 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/ |
D | errno_h.c | 112 MACRO(ETIMEDOUT); in errno_h()
|
/bionic/libc/include/bits/ |
D | threads_inlines.h | 45 case ETIMEDOUT: return thrd_timedout; in __bionic_thrd_error()
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 366 terrno = ETIMEDOUT; in res_nsend() 666 errno = ETIMEDOUT; /* no answer obtained */ in res_nsend() 1035 errno = ETIMEDOUT; in retrying_poll()
|
/bionic/libc/system_properties/ |
D | system_properties.cpp | 444 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait()
|