Searched refs:rwlock_type (Results 1 – 3 of 3) sorted by relevance
/external/valgrind/main/drd/ |
D | drd_rwlock.h | 45 const RwLockT rwlock_type); 46 void DRD_(rwlock_post_destroy)(const Addr rwlock, const RwLockT rwlock_type); 47 void DRD_(rwlock_pre_rdlock)(const Addr rwlock, const RwLockT rwlock_type); 48 void DRD_(rwlock_post_rdlock)(const Addr rwlock, const RwLockT rwlock_type, 50 void DRD_(rwlock_pre_wrlock)(const Addr rwlock, const RwLockT rwlock_type); 51 void DRD_(rwlock_post_wrlock)(const Addr rwlock, const RwLockT rwlock_type, 53 void DRD_(rwlock_pre_unlock)(const Addr rwlock, const RwLockT rwlock_type);
|
D | drd_rwlock.c | 203 const RwLockT rwlock_type) in drd_rwlock_check_type() argument 207 tl_assert(rwlock_type == pthread_rwlock || rwlock_type == user_rwlock); in drd_rwlock_check_type() 208 tl_assert(p->rwlock_type == pthread_rwlock || p->rwlock_type == user_rwlock); in drd_rwlock_check_type() 210 if (p->rwlock_type == rwlock_type) in drd_rwlock_check_type() 219 rwlock_type == pthread_rwlock in drd_rwlock_check_type() 230 const RwLockT rwlock_type) in DRD_() 239 p->rwlock_type = rwlock_type; in DRD_() 283 DRD_(rwlock_get_or_allocate)(const Addr rwlock, const RwLockT rwlock_type) in DRD_() 291 drd_rwlock_check_type(p, rwlock_type); in DRD_() 310 DRD_(rwlock_initialize)(p, rwlock, rwlock_type); in DRD_() [all …]
|
D | drd_clientobj.h | 138 RwLockT rwlock_type; member
|