OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GenericScopedLock
(Results
1 - 5
of
5
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_mutex.h
175
class
GenericScopedLock
{
177
explicit
GenericScopedLock
(MutexType *mu)
182
~
GenericScopedLock
() {
189
GenericScopedLock
(const
GenericScopedLock
&);
190
void operator=(const
GenericScopedLock
&);
212
typedef
GenericScopedLock
<StaticSpinMutex> SpinMutexLock;
213
typedef
GenericScopedLock
<BlockingMutex> BlockingMutexLock;
214
typedef
GenericScopedLock
<RWMutex> RWMutexLock;
sanitizer_thread_registry.h
143
typedef
GenericScopedLock
<ThreadRegistry> ThreadRegistryLock;
/external/compiler-rt/lib/tsan/rtl/
tsan_mutex.h
66
typedef
GenericScopedLock
<Mutex> Lock;
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_mutex_test.cc
62
typedef
GenericScopedLock
<MutexType> Lock;
99
GenericScopedLock
<MutexType> l(mtx);
/external/compiler-rt/lib/tsan/tests/unit/
tsan_mutex_test.cc
57
typedef
GenericScopedLock
<MutexType> Lock;
Completed in 278 milliseconds