Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dbionic_futex.cpp53 return -ETIMEDOUT; in FutexWithTimeout()
Dpthread_rwlock.cpp337 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()
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()
955 if (error == ETIMEDOUT) { in pthread_mutex_lock_timeout_np()
Dstrerror.cpp155 [ETIMEDOUT] = "Connection timed out",
Dsemaphore.cpp263 if (result == -ETIMEDOUT || result == -EINTR) { in __sem_timedwait()
/bionic/libc/private/
Dbionic_time_conversions.h60 return ETIMEDOUT; in check_timespec()
/bionic/libc/kernel/uapi/asm-generic/
Derrno.h97 #define ETIMEDOUT 110 macro
/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/system_properties/
Dsystem_properties.cpp340 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait()
/bionic/libc/dns/resolv/
Dres_send.c366 terrno = ETIMEDOUT; in res_nsend()
666 errno = ETIMEDOUT; /* no answer obtained */ in res_nsend()
1038 errno = ETIMEDOUT; in retrying_poll()
/bionic/tests/
Dpthread_test.cpp1087 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()