Lines Matching refs:REAL
49 return REAL(pthread_mutex_destroy)(m); in INTERCEPTOR()
55 int res = REAL(pthread_mutex_lock)(m); in INTERCEPTOR()
62 int res = REAL(pthread_mutex_trylock)(m); in INTERCEPTOR()
71 return REAL(pthread_mutex_unlock)(m); in INTERCEPTOR()
76 int res = REAL(pthread_spin_destroy)(m); in INTERCEPTOR()
84 int res = REAL(pthread_spin_lock)(m); in INTERCEPTOR()
91 int res = REAL(pthread_spin_trylock)(m); in INTERCEPTOR()
100 return REAL(pthread_spin_unlock)(m); in INTERCEPTOR()
106 return REAL(pthread_rwlock_destroy)(m); in INTERCEPTOR()
112 int res = REAL(pthread_rwlock_rdlock)(m); in INTERCEPTOR()
119 int res = REAL(pthread_rwlock_tryrdlock)(m); in INTERCEPTOR()
128 int res = REAL(pthread_rwlock_timedrdlock)(m, abstime); in INTERCEPTOR()
137 int res = REAL(pthread_rwlock_wrlock)(m); in INTERCEPTOR()
144 int res = REAL(pthread_rwlock_trywrlock)(m); in INTERCEPTOR()
153 int res = REAL(pthread_rwlock_timedwrlock)(m, abstime); in INTERCEPTOR()
162 return REAL(pthread_rwlock_unlock)(m); in INTERCEPTOR()
183 return REAL(pthread_cond_init)(cond, a); in INTERCEPTOR()
191 int res = REAL(pthread_cond_wait)(cond, m); in INTERCEPTOR()
202 int res = REAL(pthread_cond_timedwait)(cond, m, abstime); in INTERCEPTOR()
210 return REAL(pthread_cond_signal)(cond); in INTERCEPTOR()
216 return REAL(pthread_cond_broadcast)(cond); in INTERCEPTOR()
222 int res = REAL(pthread_cond_destroy)(cond); in INTERCEPTOR()
231 return REAL(realpath)(path, resolved_path); in INTERCEPTOR()
236 return REAL(read)(fd, ptr, count); in INTERCEPTOR()
241 return REAL(pread)(fd, ptr, count, offset); in INTERCEPTOR()