Home | History | Annotate | Download | only in rtl

Lines Matching refs:abstime

829 TSAN_INTERCEPTOR(int, pthread_mutex_timedlock, void *m, void *abstime) {
830 SCOPED_TSAN_INTERCEPTOR(pthread_mutex_timedlock, m, abstime);
831 int res = REAL(pthread_mutex_timedlock)(m, abstime);
924 TSAN_INTERCEPTOR(int, pthread_rwlock_timedrdlock, void *m, void *abstime) {
925 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_timedrdlock, m, abstime);
926 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime);
951 TSAN_INTERCEPTOR(int, pthread_rwlock_timedwrlock, void *m, void *abstime) {
952 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_timedwrlock, m, abstime);
953 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime);
1003 TSAN_INTERCEPTOR(int, pthread_cond_timedwait, void *c, void *m, void *abstime) {
1004 SCOPED_TSAN_INTERCEPTOR(pthread_cond_timedwait, c, m, abstime);
1006 int res = REAL(pthread_cond_timedwait)(c, m, abstime);
1092 TSAN_INTERCEPTOR(int, sem_timedwait, void *s, void *abstime) {
1093 SCOPED_TSAN_INTERCEPTOR(sem_timedwait, s, abstime);
1094 int res = BLOCK_REAL(sem_timedwait)(s, abstime);