Home
last modified time | relevance | path

Searched refs:__timeout (Results 1 – 10 of 10) sorted by relevance

/bionic/libc/include/
Dpthread.h125 const struct timespec* __timeout) __INTRODUCED_IN(30);
129 …cond_timedwait(pthread_cond_t* __cond, pthread_mutex_t* __mutex, const struct timespec* __timeout);
141 const struct timespec* __timeout) __INTRODUCED_IN_64(28);
193 int pthread_mutex_timedlock(pthread_mutex_t* __mutex, const struct timespec* __timeout)
205 int pthread_mutex_timedlock_monotonic_np(pthread_mutex_t* __mutex, const struct timespec* __timeout)
238 const struct timespec* __timeout) __INTRODUCED_IN(30);
240 const struct timespec* __timeout) __INTRODUCED_IN(30);
244 int pthread_rwlock_timedrdlock(pthread_rwlock_t* __rwlock, const struct timespec* __timeout);
247 const struct timespec* __timeout) __INTRODUCED_IN(28);
248 int pthread_rwlock_timedwrlock(pthread_rwlock_t* __rwlock, const struct timespec* __timeout);
[all …]
Dpoll.h64 …llfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeout, const sigset_t*…
69 …lfd* _Nullable __fds, nfds_t __count, const struct timespec* _Nullable __timeout, const sigset64_…
Dthreads.h112 int cnd_timedwait(cnd_t* __cond, mtx_t* __mutex, const struct timespec* __timeout)
140 int mtx_timedlock(mtx_t* __mutex, const struct timespec* __timeout) __INTRODUCED_IN(30);
Dsignal.h124 int sigtimedwait(const sigset_t* __set, siginfo_t* __info, const struct timespec* __timeout) __INTR…
125 int sigtimedwait64(const sigset64_t* __set, siginfo_t* __info, const struct timespec* __timeout) __…
/bionic/libc/bionic/
Drecvmsg.cpp38 const struct timespec* __timeout);
78 const struct timespec* __timeout) { in recvmmsg() argument
79 int rc = __recvmmsg(__fd, __msgs, __msg_count, __flags, __timeout); in recvmmsg()
/bionic/libc/include/sys/
Dselect.h109 …ount, fd_set* __read_fds, fd_set* __write_fds, fd_set* __exception_fds, struct timeval* __timeout);
118 …s, fd_set* __write_fds, fd_set* __exception_fds, const struct timespec* __timeout, const sigset_t*…
129 …s, fd_set* __write_fds, fd_set* __exception_fds, const struct timespec* __timeout, const sigset64_…
Dsem.h59 …sem_id, struct sembuf* __ops, size_t __op_count, const struct timespec* __timeout) __INTRODUCED_IN…
Dsocket.h304 …d, struct mmsghdr* __msgs, unsigned int __msg_count, int __flags, const struct timespec* __timeout)
/bionic/libc/include/bits/
Dthreads_inlines.h76 const struct timespec* __timeout) { in cnd_timedwait() argument
77 return __bionic_thrd_error(pthread_cond_timedwait(__cnd, __mtx, __timeout)); in cnd_timedwait()
108 const struct timespec* __timeout) { in mtx_timedlock() argument
109 return __bionic_thrd_error(pthread_mutex_timedlock(__mtx, __timeout)); in mtx_timedlock()
/bionic/tests/
Dpthread_test.cpp1104 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedrdlock_timeout_helper() argument
1142 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1143 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1153 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1154 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()
1172 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedwrlock_timeout_helper() argument
1210 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1211 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1221 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1222 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()
[all …]