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