/external/llvm/lib/Support/ |
D | RWMutex.cpp | 50 pthread_rwlock_t* rwlock = in RWMutexImpl() local 70 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in ~RWMutexImpl() local 79 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in reader_acquire() local 89 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in reader_release() local 99 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in writer_acquire() local 109 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); in writer_release() local
|
/external/valgrind/main/drd/ |
D | drd.h | 219 #define ANNOTATE_RWLOCK_CREATE(rwlock) \ argument 224 #define ANNOTATE_RWLOCK_DESTROY(rwlock) \ argument 233 #define ANNOTATE_RWLOCK_ACQUIRED(rwlock, is_w) \ argument 243 #define ANNOTATE_READERLOCK_ACQUIRED(rwlock) ANNOTATE_RWLOCK_ACQUIRED(rwlock, 0) argument 249 #define ANNOTATE_WRITERLOCK_ACQUIRED(rwlock) ANNOTATE_RWLOCK_ACQUIRED(rwlock, 1) argument 258 #define ANNOTATE_RWLOCK_RELEASED(rwlock, is_w) \ argument 267 #define ANNOTATE_READERLOCK_RELEASED(rwlock) ANNOTATE_RWLOCK_RELEASED(rwlock, 0) argument 272 #define ANNOTATE_WRITERLOCK_RELEASED(rwlock) ANNOTATE_RWLOCK_RELEASED(rwlock, 1) argument
|
D | drd_pthread_intercepts.c | 1112 int pthread_rwlock_init_intercept(pthread_rwlock_t* rwlock, in pthread_rwlock_init_intercept() 1130 int pthread_rwlock_destroy_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_destroy_intercept() 1146 int pthread_rwlock_rdlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_rdlock_intercept() 1164 int pthread_rwlock_wrlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_wrlock_intercept() 1182 int pthread_rwlock_timedrdlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_timedrdlock_intercept() 1200 int pthread_rwlock_timedwrlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_timedwrlock_intercept() 1218 int pthread_rwlock_tryrdlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_tryrdlock_intercept() 1236 int pthread_rwlock_trywrlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_trywrlock_intercept() 1254 int pthread_rwlock_unlock_intercept(pthread_rwlock_t* rwlock) in pthread_rwlock_unlock_intercept()
|
D | drd_clientobj.h | 152 struct rwlock_info rwlock; member
|
D | drd_error.h | 154 Addr rwlock; member
|
/external/kernel-headers/original/linux/ |
D | spinlock.h | 154 # define _raw_read_lock(rwlock) __raw_read_lock(&(rwlock)->raw_lock) argument 155 # define _raw_read_trylock(rwlock) __raw_read_trylock(&(rwlock)->raw_lock) argument 156 # define _raw_read_unlock(rwlock) __raw_read_unlock(&(rwlock)->raw_lock) argument 157 # define _raw_write_lock(rwlock) __raw_write_lock(&(rwlock)->raw_lock) argument 158 # define _raw_write_trylock(rwlock) __raw_write_trylock(&(rwlock)->raw_lock) argument 159 # define _raw_write_unlock(rwlock) __raw_write_unlock(&(rwlock)->raw_lock) argument 162 #define read_can_lock(rwlock) __raw_read_can_lock(&(rwlock)->raw_lock) argument 163 #define write_can_lock(rwlock) __raw_write_can_lock(&(rwlock)->raw_lock) argument
|
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/ |
D | pthread_rwlock_wrlock.c | 43 pthread_rwlock_wrlock (pthread_rwlock_t * rwlock) in pthread_rwlock_wrlock()
|
D | pthread_rwlock_tryrdlock.c | 43 pthread_rwlock_tryrdlock (pthread_rwlock_t * rwlock) in pthread_rwlock_tryrdlock()
|
D | ptw32_rwlock_check_need_init.c | 41 ptw32_rwlock_check_need_init (pthread_rwlock_t * rwlock) in ptw32_rwlock_check_need_init()
|
D | pthread_rwlock_rdlock.c | 43 pthread_rwlock_rdlock (pthread_rwlock_t * rwlock) in pthread_rwlock_rdlock()
|
D | pthread_rwlock_unlock.c | 43 pthread_rwlock_unlock (pthread_rwlock_t * rwlock) in pthread_rwlock_unlock()
|
D | pthread_rwlock_trywrlock.c | 43 pthread_rwlock_trywrlock (pthread_rwlock_t * rwlock) in pthread_rwlock_trywrlock()
|
D | pthread_rwlock_timedwrlock.c | 43 pthread_rwlock_timedwrlock (pthread_rwlock_t * rwlock, in pthread_rwlock_timedwrlock()
|
D | pthread_rwlock_init.c | 43 pthread_rwlock_init (pthread_rwlock_t * rwlock, in pthread_rwlock_init()
|
D | pthread_rwlock_timedrdlock.c | 43 pthread_rwlock_timedrdlock (pthread_rwlock_t * rwlock, in pthread_rwlock_timedrdlock()
|
D | pthread_rwlock_destroy.c | 43 pthread_rwlock_destroy (pthread_rwlock_t * rwlock) in pthread_rwlock_destroy()
|
/external/valgrind/main/drd/tests/ |
D | trylock.c | 23 pthread_rwlock_t rwlock; in main() local
|
D | hold_lock.c | 30 pthread_rwlock_t rwlock; in main() local
|
/external/compiler-rt/lib/tsan/lit_tests/ |
D | write_in_reader_lock.cc | 5 pthread_rwlock_t rwlock; variable
|
/external/valgrind/main/helgrind/ |
D | hg_intercepts.c | 1405 static int pthread_rwlock_wrlock_WRK(pthread_rwlock_t* rwlock) in pthread_rwlock_wrlock_WRK() 1434 pthread_rwlock_t* rwlock) { in PTH_FUNC() 1439 pthread_rwlock_t* rwlock) { in PTH_FUNC() 1453 static int pthread_rwlock_rdlock_WRK(pthread_rwlock_t* rwlock) in pthread_rwlock_rdlock_WRK() 1482 pthread_rwlock_t* rwlock) { in PTH_FUNC() 1487 pthread_rwlock_t* rwlock) { in PTH_FUNC() 1501 static int pthread_rwlock_trywrlock_WRK(pthread_rwlock_t* rwlock) in pthread_rwlock_trywrlock_WRK() 1536 pthread_rwlock_t* rwlock) { in PTH_FUNC() 1541 pthread_rwlock_t* rwlock) { in PTH_FUNC() 1555 static int pthread_rwlock_tryrdlock_WRK(pthread_rwlock_t* rwlock) in pthread_rwlock_tryrdlock_WRK() [all …]
|
/external/bison/lib/glthread/ |
D | lock.h | 207 pthread_rwlock_t rwlock; /* read-write lock */ member
|