Home
last modified time | relevance | path

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

/bionic/libc/bionic/
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.cpp186 if (status == -ETIMEDOUT) { in __pthread_cond_timedwait()
187 return ETIMEDOUT; in __pthread_cond_timedwait()
Dbionic_futex.cpp53 return -ETIMEDOUT; in FutexWithTimeout()
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/tests/
Dsemaphore_test.cpp115 ASSERT_EQ(ETIMEDOUT, errno); in sem_timedwait_helper()
131 ASSERT_EQ(ETIMEDOUT, errno); in sem_timedwait_helper()
Dpthread_test.cpp1088 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper()
1095 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper()
1098 ASSERT_EQ(ETIMEDOUT, arg->timed_lock_function(&arg->lock, &ts)); in pthread_rwlock_wakeup_timeout_helper()
1652 ASSERT_EQ(ETIMEDOUT, wait_function(&cond, &mutex, &ts)); in pthread_cond_timedwait_timeout_helper()
1659 ASSERT_EQ(ETIMEDOUT, wait_function(&cond, &mutex, &ts)); in pthread_cond_timedwait_timeout_helper()
2348 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper()
2355 ASSERT_EQ(ETIMEDOUT, lock_function(&m, &ts)); in pthread_mutex_timedlock_helper()
2430 ASSERT_EQ(ETIMEDOUT, reinterpret_cast<intptr_t>(result)); in pthread_mutex_timedlock_pi_helper()
/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/dns/resolv/
Dres_send.c366 terrno = ETIMEDOUT; in res_nsend()
666 errno = ETIMEDOUT; /* no answer obtained */ in res_nsend()
1036 errno = ETIMEDOUT; in retrying_poll()
/bionic/libc/system_properties/
Dsystem_properties.cpp340 if ((rc = __futex_wait(serial_ptr, old_serial, relative_timeout)) != 0 && rc == -ETIMEDOUT) { in Wait()