Lines Matching defs:l

90 #define	HEIMDAL_RWLOCK_init(l) rwlock_init(l, NULL)  argument
91 #define HEIMDAL_RWLOCK_rdlock(l) rwlock_rdlock(l) argument
92 #define HEIMDAL_RWLOCK_wrlock(l) rwlock_wrlock(l) argument
93 #define HEIMDAL_RWLOCK_tryrdlock(l) rwlock_tryrdlock(l) argument
94 #define HEIMDAL_RWLOCK_trywrlock(l) rwlock_trywrlock(l) argument
95 #define HEIMDAL_RWLOCK_unlock(l) rwlock_unlock(l) argument
96 #define HEIMDAL_RWLOCK_destroy(l) rwlock_destroy(l) argument
120 #define HEIMDAL_RWLOCK_init(l) pthread_rwlock_init(l, NULL) argument
121 #define HEIMDAL_RWLOCK_rdlock(l) pthread_rwlock_rdlock(l) argument
122 #define HEIMDAL_RWLOCK_wrlock(l) pthread_rwlock_wrlock(l) argument
123 #define HEIMDAL_RWLOCK_tryrdlock(l) pthread_rwlock_tryrdlock(l) argument
124 #define HEIMDAL_RWLOCK_trywrlock(l) pthread_rwlock_trywrlock(l) argument
125 #define HEIMDAL_RWLOCK_unlock(l) pthread_rwlock_unlock(l) argument
126 #define HEIMDAL_RWLOCK_destroy(l) pthread_rwlock_destroy(l) argument
215 heim_rwlock_init(heim_rwlock_t *l) in heim_rwlock_init()
223 heim_rwlock_rdlock(heim_rwlock_t *l) in heim_rwlock_rdlock()
230 heim_rwlock_wrlock(heim_rwlock_t *l) in heim_rwlock_wrlock()
238 heim_rwlock_tryrdlock(heim_rwlock_t *l) in heim_rwlock_tryrdlock()
246 heim_rwlock_trywrlock(heim_rwlock_t *l) in heim_rwlock_trywrlock()
254 heim_rwlock_unlock(heim_rwlock_t *l) in heim_rwlock_unlock()
266 heim_rwlock_destroy(heim_rwlock_t *l) in heim_rwlock_destroy()
276 #define HEIMDAL_RWLOCK_init(l) heim_rwlock_init((l)) argument
277 #define HEIMDAL_RWLOCK_rdlock(l) heim_rwlock_rdlock((l)) argument
278 #define HEIMDAL_RWLOCK_wrlock(l) heim_rwlock_wrlock((l)) argument
279 #define HEIMDAL_RWLOCK_tryrdlock(l) heim_rwlock_tryrdlock((l)) argument
280 #define HEIMDAL_RWLOCK_trywrlock(l) heim_rwlock_trywrlock((l)) argument
281 #define HEIMDAL_RWLOCK_unlock(l) heim_rwlock_unlock((l)) argument
282 #define HEIMDAL_RWLOCK_destroy(l) heim_rwlock_destroy((l)) argument
309 #define HEIMDAL_RWLOCK_init(l) do { } while(0) argument
310 #define HEIMDAL_RWLOCK_rdlock(l) do { } while(0) argument
311 #define HEIMDAL_RWLOCK_wrlock(l) do { } while(0) argument
312 #define HEIMDAL_RWLOCK_tryrdlock(l) do { } while(0) argument
313 #define HEIMDAL_RWLOCK_trywrlock(l) do { } while(0) argument
314 #define HEIMDAL_RWLOCK_unlock(l) do { } while(0) argument
315 #define HEIMDAL_RWLOCK_destroy(l) do { } while(0) argument
333 #define HEIMDAL_RWLOCK_init(l) do { } while(0) argument
334 #define HEIMDAL_RWLOCK_rdlock(l) do { } while(0) argument
335 #define HEIMDAL_RWLOCK_wrlock(l) do { } while(0) argument
336 #define HEIMDAL_RWLOCK_tryrdlock(l) do { } while(0) argument
337 #define HEIMDAL_RWLOCK_trywrlock(l) do { } while(0) argument
338 #define HEIMDAL_RWLOCK_unlock(l) do { } while(0) argument
339 #define HEIMDAL_RWLOCK_destroy(l) do { } while(0) argument