Home
last modified time | relevance | path

Searched refs:rwlock_type (Results 1 – 3 of 3) sorted by relevance

/external/valgrind/main/drd/
Ddrd_rwlock.h45 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);
Ddrd_rwlock.c203 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 …]
Ddrd_clientobj.h138 RwLockT rwlock_type; member