Searched refs:rwlock_type (Results 1 – 3 of 3) sorted by relevance
/external/valgrind/main/drd/ |
D | drd_rwlock.h | 44 const RwLockT rwlock_type); 45 void DRD_(rwlock_post_destroy)(const Addr rwlock, const RwLockT rwlock_type); 46 void DRD_(rwlock_pre_rdlock)(const Addr rwlock, const RwLockT rwlock_type); 47 void DRD_(rwlock_post_rdlock)(const Addr rwlock, const RwLockT rwlock_type, 49 void DRD_(rwlock_pre_wrlock)(const Addr rwlock, const RwLockT rwlock_type); 50 void DRD_(rwlock_post_wrlock)(const Addr rwlock, const RwLockT rwlock_type, 52 void DRD_(rwlock_pre_unlock)(const Addr rwlock, const RwLockT rwlock_type);
|
D | drd_rwlock.c | 196 const RwLockT rwlock_type) in drd_rwlock_check_type() argument 200 tl_assert(rwlock_type == pthread_rwlock || rwlock_type == user_rwlock); in drd_rwlock_check_type() 201 tl_assert(p->rwlock_type == pthread_rwlock || p->rwlock_type == user_rwlock); in drd_rwlock_check_type() 203 if (p->rwlock_type == rwlock_type) in drd_rwlock_check_type() 212 rwlock_type == pthread_rwlock in drd_rwlock_check_type() 223 const RwLockT rwlock_type) in DRD_() 232 p->rwlock_type = rwlock_type; in DRD_() 272 DRD_(rwlock_get_or_allocate)(const Addr rwlock, const RwLockT rwlock_type) in DRD_() 280 drd_rwlock_check_type(p, rwlock_type); in DRD_() 299 DRD_(rwlock_initialize)(p, rwlock, rwlock_type); in DRD_() [all …]
|
D | drd_clientobj.h | 138 RwLockT rwlock_type; member
|