Home
last modified time | relevance | path

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

/bionic/libc/include/
Dpthread.h127 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30);
131 …t* _Nonnull __cond, pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout);
143 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN_64(28);
193 …read_mutex_timedlock(pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout)
205 …medlock_monotonic_np(pthread_mutex_t* _Nonnull __mutex, const struct timespec* _Nullable __timeout)
221 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30);
223 const struct timespec* _Nullable __timeout) __INTRODUCED_IN(30);
227 …wlock_timedrdlock(pthread_rwlock_t* _Nonnull __rwlock, const struct timespec* _Nullable __timeout);
230 … const struct timespec* _Nullable __timeout) __INTRODUCED_IN(28);
231 …wlock_timedwrlock(pthread_rwlock_t* _Nonnull __rwlock, const struct timespec* _Nullable __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 …medwait(cnd_t* _Nonnull __cond, mtx_t* _Nonnull __mutex, const struct timespec* _Nonnull __timeout)
140 int mtx_timedlock(mtx_t* _Nonnull __mutex, const struct timespec* _Nonnull __timeout) __INTRODUCED_…
Dsignal.h120 …ll __set, siginfo_t* _Nullable __info, const struct timespec* _Nullable __timeout) __INTRODUCED_IN…
121 …ll __set, siginfo_t* _Nullable __info, const struct timespec* _Nullable __timeout) __INTRODUCED_IN…
/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.h98 …et* _Nullable __write_fds, fd_set* _Nullable __exception_fds, struct timeval* _Nullable __timeout);
109 …ds, fd_set* _Nullable __exception_fds, const struct timespec* _Nullable __timeout, const sigset_t*…
122 …ds, fd_set* _Nullable __exception_fds, const struct timespec* _Nullable __timeout, const sigset64_…
Dsem.h59 …sem_id, struct sembuf* __ops, size_t __op_count, const struct timespec* __timeout) __INTRODUCED_IN…
Dsocket.h298 …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()
107 const struct timespec* __timeout) { in mtx_timedlock() argument
108 return __bionic_thrd_error(pthread_mutex_timedlock(__mtx, __timeout)); in mtx_timedlock()
/bionic/tests/
Dpthread_test.cpp1132 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedrdlock_timeout_helper() argument
1170 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1171 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1181 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1182 return pthread_rwlock_clockrdlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()
1200 clockid_t clock, int (*lock_function)(pthread_rwlock_t* __rwlock, const timespec* __timeout)) { in pthread_rwlock_timedwrlock_timeout_helper() argument
1238 CLOCK_MONOTONIC, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1239 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_MONOTONIC, __timeout); in TEST()
1249 CLOCK_REALTIME, [](pthread_rwlock_t* __rwlock, const timespec* __timeout) { in TEST() argument
1250 return pthread_rwlock_clockwrlock(__rwlock, CLOCK_REALTIME, __timeout); in TEST()
[all …]