Home
last modified time | relevance | path

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

/bionic/libc/bionic/
Dpthread_rwlock.cpp152 return ETIMEDOUT; in __pthread_rwlock_timedrdlock()
160 if (ret == -ETIMEDOUT) { in __pthread_rwlock_timedrdlock()
161 return ETIMEDOUT; in __pthread_rwlock_timedrdlock()
185 return ETIMEDOUT; in __pthread_rwlock_timedwrlock()
193 if (ret == -ETIMEDOUT) { in __pthread_rwlock_timedwrlock()
194 return ETIMEDOUT; in __pthread_rwlock_timedwrlock()
Dpthread_cond.cpp159 if (status == -ETIMEDOUT) { in __pthread_cond_timedwait_relative()
160 return ETIMEDOUT; in __pthread_cond_timedwait_relative()
172 return ETIMEDOUT; in __pthread_cond_timedwait()
Dpthread_mutex.cpp644 return ETIMEDOUT; in __pthread_mutex_timedlock()
685 return ETIMEDOUT; in __pthread_mutex_timedlock()
707 return ETIMEDOUT; in __pthread_mutex_timedlock()
714 if (__futex_wait_ex(&mutex->value, shared, mvalue, &ts) == -ETIMEDOUT) { in __pthread_mutex_timedlock()
715 return ETIMEDOUT; in __pthread_mutex_timedlock()
735 if (error == ETIMEDOUT) { in pthread_mutex_lock_timeout_np()
Dsemaphore.c308 errno = ETIMEDOUT; in sem_timedwait()
323 if (ret == -ETIMEDOUT || ret == -EINTR) { in sem_timedwait()
/bionic/libc/kernel/uapi/asm-generic/
Derrno.h116 #define ETIMEDOUT 110 macro
/bionic/libc/kernel/uapi/asm-mips/asm/
Derrno.h124 #define ETIMEDOUT 145 macro
/bionic/libc/include/sys/
D_errdefs.h147 __BIONIC_ERRDEF( ETIMEDOUT , 110, "Connection timed out" )
/bionic/libc/dns/resolv/
Dres_send.c388 terrno = ETIMEDOUT; in res_nsend()
655 errno = ETIMEDOUT; /* no answer obtained */ in res_nsend()
1013 errno = ETIMEDOUT; in retrying_select()
/bionic/tests/
Dpthread_test.cpp809 ASSERT_EQ(ETIMEDOUT, pthread_mutex_timedlock(&m, &ts)); in TEST()