OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ReaderMutexLock
(Results
1 - 10
of
10
) sorted by null
/external/regex-re2/util/
mutex.h
160
//
ReaderMutexLock
and WriterMutexLock do the same, for rwlocks
161
class
ReaderMutexLock
{
163
explicit
ReaderMutexLock
(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
164
~
ReaderMutexLock
() { mu_->ReaderUnlock(); }
168
ReaderMutexLock
(const
ReaderMutexLock
&);
169
void operator=(const
ReaderMutexLock
&);
185
#define
ReaderMutexLock
(x) COMPILE_ASSERT(0, rmutex_lock_decl_missing_var_name)
/prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
mutex.h
77
#undef
ReaderMutexLock
92
typedef MutexLock
ReaderMutexLock
;
140
using internal::
ReaderMutexLock
;
/external/clang/test/PCH/
thread-safety-attrs.cpp
49
class __attribute__((scoped_lockable))
ReaderMutexLock
{
51
ReaderMutexLock
(Mutex *mu) __attribute__((exclusive_lock_function(mu)));
52
~
ReaderMutexLock
() __attribute__((unlock_function));
/art/runtime/base/
mutex.h
502
class SCOPED_CAPABILITY
ReaderMutexLock
{
504
ReaderMutexLock
(Thread* self, ReaderWriterMutex& mu) ACQUIRE(mu) :
509
~
ReaderMutexLock
() RELEASE() {
516
DISALLOW_COPY_AND_ASSIGN(
ReaderMutexLock
);
518
// Catch bug where variable name is omitted. "
ReaderMutexLock
(lock);" instead of
519
// "
ReaderMutexLock
mu(lock)".
520
#define
ReaderMutexLock
(x) static_assert(0, "
ReaderMutexLock
declaration missing variable name")
/external/protobuf/src/google/protobuf/stubs/
common.h
[
all
...]
/prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h
[
all
...]
/prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
common.h
[
all
...]
/prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
common.h
[
all
...]
/prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
common.h
[
all
...]
/external/clang/test/SemaCXX/
warn-thread-safety-analysis.cpp
53
class SCOPED_LOCKABLE
ReaderMutexLock
{
55
ReaderMutexLock
(Mutex *mu) SHARED_LOCK_FUNCTION(mu);
56
ReaderMutexLock
(Mutex *mu, bool adopt) SHARED_LOCKS_REQUIRED(mu);
57
~
ReaderMutexLock
() UNLOCK_FUNCTION();
[
all
...]
Completed in 1185 milliseconds