Lines Matching refs:REAL
46 return REAL(pthread_mutex_destroy)(m); in INTERCEPTOR()
52 int res = REAL(pthread_mutex_lock)(m); in INTERCEPTOR()
59 int res = REAL(pthread_mutex_trylock)(m); in INTERCEPTOR()
68 return REAL(pthread_mutex_unlock)(m); in INTERCEPTOR()
73 int res = REAL(pthread_spin_destroy)(m); in INTERCEPTOR()
81 int res = REAL(pthread_spin_lock)(m); in INTERCEPTOR()
88 int res = REAL(pthread_spin_trylock)(m); in INTERCEPTOR()
97 return REAL(pthread_spin_unlock)(m); in INTERCEPTOR()
103 return REAL(pthread_rwlock_destroy)(m); in INTERCEPTOR()
109 int res = REAL(pthread_rwlock_rdlock)(m); in INTERCEPTOR()
116 int res = REAL(pthread_rwlock_tryrdlock)(m); in INTERCEPTOR()
125 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime); in INTERCEPTOR()
134 int res = REAL(pthread_rwlock_wrlock)(m); in INTERCEPTOR()
141 int res = REAL(pthread_rwlock_trywrlock)(m); in INTERCEPTOR()
150 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime); in INTERCEPTOR()
159 return REAL(pthread_rwlock_unlock)(m); in INTERCEPTOR()
180 return REAL(pthread_cond_init)(cond, a); in INTERCEPTOR()
188 int res = REAL(pthread_cond_wait)(cond, m); in INTERCEPTOR()
199 int res = REAL(pthread_cond_timedwait)(cond, m, abstime); in INTERCEPTOR()
207 return REAL(pthread_cond_signal)(cond); in INTERCEPTOR()
213 return REAL(pthread_cond_broadcast)(cond); in INTERCEPTOR()
219 int res = REAL(pthread_cond_destroy)(cond); in INTERCEPTOR()
228 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
233 return REAL(read)(fd, ptr, count); in INTERCEPTOR()
238 return REAL(pread)(fd, ptr, count, offset); in INTERCEPTOR()