Searched refs:ETIMEDOUT (Results 1 – 13 of 13) sorted by relevance
/bionic/libc/bionic/ |
D | bionic_futex.cpp | 53 return -ETIMEDOUT; in FutexWithTimeout()
|
D | pthread_rwlock.cpp | 337 if (futex_result == -ETIMEDOUT) { in __pthread_rwlock_timedrdlock() 338 return ETIMEDOUT; in __pthread_rwlock_timedrdlock() 404 if (futex_result == -ETIMEDOUT) { in __pthread_rwlock_timedwrlock() 405 return ETIMEDOUT; in __pthread_rwlock_timedwrlock()
|
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() 955 if (error == ETIMEDOUT) { in pthread_mutex_lock_timeout_np()
|
D | strerror.cpp | 155 [ETIMEDOUT] = "Connection timed out",
|
D | semaphore.cpp | 263 if (result == -ETIMEDOUT || result == -EINTR) { in __sem_timedwait()
|
/bionic/libc/private/ |
D | bionic_time_conversions.h | 60 return ETIMEDOUT; in check_timespec()
|
/bionic/libc/kernel/uapi/asm-generic/ |
D | errno.h | 97 #define ETIMEDOUT 110 macro
|
/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/system_properties/ |
D | system_properties.cpp | 340 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait()
|
/bionic/libc/dns/resolv/ |
D | res_send.c | 366 terrno = ETIMEDOUT; in res_nsend() 666 errno = ETIMEDOUT; /* no answer obtained */ in res_nsend() 1038 errno = ETIMEDOUT; in retrying_poll()
|
/bionic/tests/ |
D | pthread_test.cpp | 1087 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper() 1094 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper() 1097 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper() 1651 ASSERT_EQ(ETIMEDOUT, wait_function(&cond, &mutex, &ts)); in pthread_cond_timedwait_timeout_helper() 1658 ASSERT_EQ(ETIMEDOUT, wait_function(&cond, &mutex, &ts)); in pthread_cond_timedwait_timeout_helper() 2347 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper() 2354 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper() 2429 ASSERT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(result)); in pthread_mutex_timedlock_pi_helper()
|