Lines Matching refs:f

89   FUNCTION(pthread_atfork, int (*f)(void (*)(void), void (*)(void), void (*)(void)));  in pthread_h()
90 FUNCTION(pthread_attr_destroy, int (*f)(pthread_attr_t*)); in pthread_h()
91 FUNCTION(pthread_attr_getdetachstate, int (*f)(const pthread_attr_t*, int*)); in pthread_h()
92 FUNCTION(pthread_attr_getguardsize, int (*f)(const pthread_attr_t*, size_t*)); in pthread_h()
93 FUNCTION(pthread_attr_getinheritsched, int (*f)(const pthread_attr_t*, int*)); in pthread_h()
94 FUNCTION(pthread_attr_getschedparam, int (*f)(const pthread_attr_t*, struct sched_param*)); in pthread_h()
95 FUNCTION(pthread_attr_getschedpolicy, int (*f)(const pthread_attr_t*, int*)); in pthread_h()
96 FUNCTION(pthread_attr_getscope, int (*f)(const pthread_attr_t*, int*)); in pthread_h()
97 FUNCTION(pthread_attr_getstack, int (*f)(const pthread_attr_t*, void**, size_t*)); in pthread_h()
98 FUNCTION(pthread_attr_getstacksize, int (*f)(const pthread_attr_t*, size_t*)); in pthread_h()
99 FUNCTION(pthread_attr_init, int (*f)(pthread_attr_t*)); in pthread_h()
100 FUNCTION(pthread_attr_setdetachstate, int (*f)(pthread_attr_t*, int)); in pthread_h()
101 FUNCTION(pthread_attr_setguardsize, int (*f)(pthread_attr_t*, size_t)); in pthread_h()
102 FUNCTION(pthread_attr_setinheritsched, int (*f)(pthread_attr_t*, int)); in pthread_h()
103 FUNCTION(pthread_attr_setschedparam, int (*f)(pthread_attr_t*, const struct sched_param*)); in pthread_h()
104 FUNCTION(pthread_attr_setschedpolicy, int (*f)(pthread_attr_t*, int)); in pthread_h()
105 FUNCTION(pthread_attr_setscope, int (*f)(pthread_attr_t*, int)); in pthread_h()
106 FUNCTION(pthread_attr_setstack, int (*f)(pthread_attr_t*, void*, size_t)); in pthread_h()
107 FUNCTION(pthread_attr_setstacksize, int (*f)(pthread_attr_t*, size_t)); in pthread_h()
108 FUNCTION(pthread_barrier_destroy, int (*f)(pthread_barrier_t*)); in pthread_h()
109 …FUNCTION(pthread_barrier_init, int (*f)(pthread_barrier_t*, const pthread_barrierattr_t*, unsigned… in pthread_h()
110 FUNCTION(pthread_barrier_wait, int (*f)(pthread_barrier_t*)); in pthread_h()
111 FUNCTION(pthread_barrierattr_destroy, int (*f)(pthread_barrierattr_t*)); in pthread_h()
112 FUNCTION(pthread_barrierattr_getpshared, int (*f)(const pthread_barrierattr_t*, int*)); in pthread_h()
113 FUNCTION(pthread_barrierattr_init, int (*f)(pthread_barrierattr_t*)); in pthread_h()
114 FUNCTION(pthread_barrierattr_setpshared, int (*f)(pthread_barrierattr_t*, int)); in pthread_h()
116 FUNCTION(pthread_cancel, int (*f)(pthread_t)); in pthread_h()
118 FUNCTION(pthread_cond_broadcast, int (*f)(pthread_cond_t*)); in pthread_h()
119 FUNCTION(pthread_cond_destroy, int (*f)(pthread_cond_t*)); in pthread_h()
120 FUNCTION(pthread_cond_init, int (*f)(pthread_cond_t*, const pthread_condattr_t*)); in pthread_h()
121 FUNCTION(pthread_cond_signal, int (*f)(pthread_cond_t*)); in pthread_h()
122 …FUNCTION(pthread_cond_timedwait, int (*f)(pthread_cond_t*, pthread_mutex_t*, const struct timespec… in pthread_h()
123 FUNCTION(pthread_cond_wait, int (*f)(pthread_cond_t*, pthread_mutex_t*)); in pthread_h()
124 FUNCTION(pthread_condattr_destroy, int (*f)(pthread_condattr_t*)); in pthread_h()
125 FUNCTION(pthread_condattr_getclock, int (*f)(const pthread_condattr_t*, clockid_t*)); in pthread_h()
126 FUNCTION(pthread_condattr_getpshared, int (*f)(const pthread_condattr_t*, int*)); in pthread_h()
127 FUNCTION(pthread_condattr_init, int (*f)(pthread_condattr_t*)); in pthread_h()
128 FUNCTION(pthread_condattr_setclock, int (*f)(pthread_condattr_t*, clockid_t)); in pthread_h()
129 FUNCTION(pthread_condattr_setpshared, int (*f)(pthread_condattr_t*, int)); in pthread_h()
130 FUNCTION(pthread_create, int (*f)(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)); in pthread_h()
131 FUNCTION(pthread_detach, int (*f)(pthread_t)); in pthread_h()
132 FUNCTION(pthread_equal, int (*f)(pthread_t, pthread_t)); in pthread_h()
133 FUNCTION(pthread_exit, void (*f)(void*)); in pthread_h()
135 FUNCTION(pthread_getconcurrency, int (*f)(void)); in pthread_h()
137 FUNCTION(pthread_getcpuclockid, int (*f)(pthread_t, clockid_t*)); in pthread_h()
138 FUNCTION(pthread_getschedparam, int (*f)(pthread_t, int*, struct sched_param*)); in pthread_h()
139 FUNCTION(pthread_getspecific, void* (*f)(pthread_key_t)); in pthread_h()
140 FUNCTION(pthread_join, int (*f)(pthread_t, void**)); in pthread_h()
141 FUNCTION(pthread_key_create, int (*f)(pthread_key_t*, void (*)(void*))); in pthread_h()
142 FUNCTION(pthread_key_delete, int (*f)(pthread_key_t)); in pthread_h()
144 FUNCTION(pthread_mutex_consistent, int (*f)(pthread_mutex_t*)); in pthread_h()
146 FUNCTION(pthread_mutex_destroy, int (*f)(pthread_mutex_t*)); in pthread_h()
148 FUNCTION(pthread_mutex_getprioceiling, int (*f)(const pthread_mutex_t*, int*)); in pthread_h()
150 FUNCTION(pthread_mutex_init, int (*f)(pthread_mutex_t*, const pthread_mutexattr_t*)); in pthread_h()
151 FUNCTION(pthread_mutex_lock, int (*f)(pthread_mutex_t*)); in pthread_h()
153 FUNCTION(pthread_mutex_setprioceiling, int (*f)(pthread_mutex_t*, int, int*)); in pthread_h()
155 FUNCTION(pthread_mutex_timedlock, int (*f)(pthread_mutex_t*, const struct timespec*)); in pthread_h()
156 FUNCTION(pthread_mutex_trylock, int (*f)(pthread_mutex_t*)); in pthread_h()
157 FUNCTION(pthread_mutex_unlock, int (*f)(pthread_mutex_t*)); in pthread_h()
158 FUNCTION(pthread_mutexattr_destroy, int (*f)(pthread_mutexattr_t*)); in pthread_h()
160 FUNCTION(pthread_mutexattr_getprioceiling, int (*f)(const pthread_mutexattr_t*, int*)); in pthread_h()
162 FUNCTION(pthread_mutexattr_getprotocol, int (*f)(const pthread_mutexattr_t*, int*)); in pthread_h()
163 FUNCTION(pthread_mutexattr_getpshared, int (*f)(const pthread_mutexattr_t*, int*)); in pthread_h()
165 FUNCTION(pthread_mutexattr_getrobust, int (*f)(const pthread_mutexattr_t*, int*)); in pthread_h()
167 FUNCTION(pthread_mutexattr_gettype, int (*f)(const pthread_mutexattr_t*, int*)); in pthread_h()
168 FUNCTION(pthread_mutexattr_init, int (*f)(pthread_mutexattr_t*)); in pthread_h()
170 FUNCTION(pthread_mutexattr_setprioceiling, int (*f)(pthread_mutexattr_t*, int)); in pthread_h()
172 FUNCTION(pthread_mutexattr_setprotocol, int (*f)(pthread_mutexattr_t*, int)); in pthread_h()
173 FUNCTION(pthread_mutexattr_setpshared, int (*f)(pthread_mutexattr_t*, int)); in pthread_h()
175 FUNCTION(pthread_mutexattr_setrobust, int (*f)(pthread_mutexattr_t*, int)); in pthread_h()
177 FUNCTION(pthread_mutexattr_settype, int (*f)(pthread_mutexattr_t*, int)); in pthread_h()
178 FUNCTION(pthread_once, int (*f)(pthread_once_t*, void (*)(void))); in pthread_h()
179 FUNCTION(pthread_rwlock_destroy, int (*f)(pthread_rwlock_t*)); in pthread_h()
180 FUNCTION(pthread_rwlock_init, int (*f)(pthread_rwlock_t*, const pthread_rwlockattr_t*)); in pthread_h()
181 FUNCTION(pthread_rwlock_rdlock, int (*f)(pthread_rwlock_t*)); in pthread_h()
182 FUNCTION(pthread_rwlock_timedrdlock, int (*f)(pthread_rwlock_t*, const struct timespec*)); in pthread_h()
183 FUNCTION(pthread_rwlock_timedwrlock, int (*f)(pthread_rwlock_t*, const struct timespec*)); in pthread_h()
184 FUNCTION(pthread_rwlock_tryrdlock, int (*f)(pthread_rwlock_t*)); in pthread_h()
185 FUNCTION(pthread_rwlock_trywrlock, int (*f)(pthread_rwlock_t*)); in pthread_h()
186 FUNCTION(pthread_rwlock_unlock, int (*f)(pthread_rwlock_t*)); in pthread_h()
187 FUNCTION(pthread_rwlock_wrlock, int (*f)(pthread_rwlock_t*)); in pthread_h()
188 FUNCTION(pthread_rwlockattr_destroy, int (*f)(pthread_rwlockattr_t*)); in pthread_h()
189 FUNCTION(pthread_rwlockattr_getpshared, int (*f)(const pthread_rwlockattr_t*, int*)); in pthread_h()
190 FUNCTION(pthread_rwlockattr_init, int (*f)(pthread_rwlockattr_t*)); in pthread_h()
191 FUNCTION(pthread_rwlockattr_setpshared, int (*f)(pthread_rwlockattr_t*, int)); in pthread_h()
192 FUNCTION(pthread_self, pthread_t (*f)(void)); in pthread_h()
194 FUNCTION(pthread_setcancelstate, int (*f)(int, int*)); in pthread_h()
195 FUNCTION(pthread_setcanceltype, int (*f)(int, int*)); in pthread_h()
198 FUNCTION(pthread_setconcurrency, int (*f)(int)); in pthread_h()
200 FUNCTION(pthread_setschedparam, int (*f)(pthread_t, int, const struct sched_param*)); in pthread_h()
201 FUNCTION(pthread_setschedprio, int (*f)(pthread_t, int)); in pthread_h()
202 FUNCTION(pthread_setspecific, int (*f)(pthread_key_t, const void*)); in pthread_h()
203 FUNCTION(pthread_spin_destroy, int (*f)(pthread_spinlock_t*)); in pthread_h()
204 FUNCTION(pthread_spin_init, int (*f)(pthread_spinlock_t*, int)); in pthread_h()
205 FUNCTION(pthread_spin_lock, int (*f)(pthread_spinlock_t*)); in pthread_h()
206 FUNCTION(pthread_spin_trylock, int (*f)(pthread_spinlock_t*)); in pthread_h()
207 FUNCTION(pthread_spin_unlock, int (*f)(pthread_spinlock_t*)); in pthread_h()
209 FUNCTION(pthread_testcancel, void (*f)(void)); in pthread_h()