Home
last modified time | relevance | path

Searched defs:rwlock (Results 1 – 4 of 4) sorted by relevance

/llvm-project/llvm/lib/Support/
H A DRWMutex.cpp46 pthread_rwlock_t* rwlock = RWMutexImpl() local
66 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); ~RWMutexImpl() local
75 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); lock_shared() local
85 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); unlock_shared() local
93 pthread_rwlock_t *rwlock = static_cast<pthread_rwlock_t *>(data_); try_lock_shared() local
103 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); lock() local
113 pthread_rwlock_t* rwlock = static_cast<pthread_rwlock_t*>(data_); unlock() local
121 pthread_rwlock_t *rwlock = static_cast<pthread_rwlock_t *>(data_); try_lock() local
[all...]
/llvm-project/lldb/source/Host/windows/
H A DProcessRunLock.cpp16 static bool ReadLock(lldb::rwlock_t rwlock) { in ReadLock()
21 static bool ReadUnlock(lldb::rwlock_t rwlock) { in ReadUnlock()
26 static bool WriteLock(lldb::rwlock_t rwlock) { in WriteLock()
31 static bool WriteTryLock(lldb::rwlock_t rwlock) { in WriteTryLock()
35 static bool WriteUnlock(lldb::rwlock_t rwlock) { in WriteUnlock()
/llvm-project/libc/test/integration/src/pthread/
H A Dpthread_rwlock_test.cpp44 namespace LIBC_NAMESPACE::rwlock { global() namespace
54 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; smoke_test() local
71 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; deadlock_detection_test() local
81 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; try_lock_test() local
98 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; destroy_before_unlock_test() local
122 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; high_reader_count_test() local
137 pthread_rwlock_t *rwlock = high_reader_count_test() local
155 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; unusual_timespec_test() local
172 pthread_rwlock_t rwlock = PTHREAD_RWLOCK_INITIALIZER; timedlock_with_deadlock_test() local
205 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
213 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
221 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
231 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
239 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
245 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
251 pthread_rwlock_t rwlock{}; attributed_initialization_test() local
[all...]
/llvm-project/compiler-rt/test/tsan/
H A Dwrite_in_reader_lock.cpp4 pthread_rwlock_t rwlock; variable