Lines Matching defs:abstime
1157 const struct timespec *abstime) {
1158 SCOPED_INTERCEPTOR_RAW(pthread_timedjoin_np, th, ret, abstime);
1161 int res = BLOCK_REAL(pthread_timedjoin_np)(th, ret, abstime);
1279 INTERCEPTOR(int, pthread_cond_timedwait, void *c, void *m, void *abstime) {
1281 SCOPED_TSAN_INTERCEPTOR(pthread_cond_timedwait, cond, m, abstime);
1284 [=]() { return REAL(pthread_cond_timedwait)(cond, m, abstime); }, cond,
1290 __sanitizer_clockid_t clock, void *abstime) {
1292 SCOPED_TSAN_INTERCEPTOR(pthread_cond_clockwait, cond, m, clock, abstime);
1295 [=]() { return REAL(pthread_cond_clockwait)(cond, m, clock, abstime); },
1394 TSAN_INTERCEPTOR(int, pthread_mutex_timedlock, void *m, void *abstime) {
1395 SCOPED_TSAN_INTERCEPTOR(pthread_mutex_timedlock, m, abstime);
1396 int res = REAL(pthread_mutex_timedlock)(m, abstime);
1415 __sanitizer_clockid_t clock, void *abstime) {
1416 SCOPED_TSAN_INTERCEPTOR(pthread_mutex_clocklock, m, clock, abstime);
1418 int res = BLOCK_REAL(pthread_mutex_clocklock)(m, clock, abstime);
1541 TSAN_INTERCEPTOR(int, pthread_rwlock_timedrdlock, void *m, void *abstime) {
1542 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_timedrdlock, m, abstime);
1543 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime);
1571 TSAN_INTERCEPTOR(int, pthread_rwlock_timedwrlock, void *m, void *abstime) {
1572 SCOPED_TSAN_INTERCEPTOR(pthread_rwlock_timedwrlock, m, abstime);
1573 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime);