Home
last modified time | relevance | path

Searched refs:GenericScopedLock (Results 1 – 10 of 10) sorted by relevance

/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_mutex.h180 class GenericScopedLock {
182 explicit GenericScopedLock(MutexType *mu) in GenericScopedLock() function
187 ~GenericScopedLock() { in ~GenericScopedLock()
194 GenericScopedLock(const GenericScopedLock&);
195 void operator=(const GenericScopedLock&);
217 typedef GenericScopedLock<StaticSpinMutex> SpinMutexLock;
218 typedef GenericScopedLock<BlockingMutex> BlockingMutexLock;
219 typedef GenericScopedLock<RWMutex> RWMutexLock;
H A Dsanitizer_thread_registry.h151 typedef GenericScopedLock<ThreadRegistry> ThreadRegistryLock;
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_mutex.h178 class GenericScopedLock {
180 explicit GenericScopedLock(MutexType *mu) in GenericScopedLock() function
185 ~GenericScopedLock() { in ~GenericScopedLock()
192 GenericScopedLock(const GenericScopedLock&);
193 void operator=(const GenericScopedLock&);
215 typedef GenericScopedLock<StaticSpinMutex> SpinMutexLock;
216 typedef GenericScopedLock<BlockingMutex> BlockingMutexLock;
217 typedef GenericScopedLock<RWMutex> RWMutexLock;
H A Dsanitizer_thread_registry.h148 typedef GenericScopedLock<ThreadRegistry> ThreadRegistryLock;
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_mutex.h364 class SCOPED_LOCK GenericScopedLock {
366 explicit GenericScopedLock(MutexType *mu) ACQUIRE(mu) : mu_(mu) { in GenericScopedLock() function
370 ~GenericScopedLock() RELEASE() { mu_->Unlock(); } in RELEASE()
375 GenericScopedLock(const GenericScopedLock &) = delete;
376 void operator=(const GenericScopedLock &) = delete;
422 typedef GenericScopedLock<StaticSpinMutex> SpinMutexLock;
423 typedef GenericScopedLock<Mutex> Lock;
H A Dsanitizer_thread_registry.h154 typedef GenericScopedLock<ThreadRegistry> ThreadRegistryLock;
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_mutex_test.cc62 typedef GenericScopedLock<MutexType> Lock;
99 GenericScopedLock<MutexType> l(mtx); in check_locked()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_mutex.h69 typedef GenericScopedLock<Mutex> Lock;
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_mutex.h67 typedef GenericScopedLock<Mutex> Lock;
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/unit/
H A Dtsan_mutex_test.cc57 typedef GenericScopedLock<MutexType> Lock;