OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WriterMutexLock
(Results
1 - 9
of
9
) sorted by null
/external/chromium/sdch/open-vcdiff/src/
mutex.h
275
// ReaderMutexLock and
WriterMutexLock
do the same, for rwlocks
287
class
WriterMutexLock
{
289
explicit
WriterMutexLock
(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
290
~
WriterMutexLock
() { mu_->WriterUnlock(); }
294
WriterMutexLock
(const
WriterMutexLock
&);
295
void operator=(const
WriterMutexLock
&);
301
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
/external/chromium_org/third_party/re2/util/
mutex.h
164
// ReaderMutexLock and
WriterMutexLock
do the same, for rwlocks
176
class
WriterMutexLock
{
178
explicit
WriterMutexLock
(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
179
~
WriterMutexLock
() { mu_->WriterUnlock(); }
183
WriterMutexLock
(const
WriterMutexLock
&);
184
void operator=(const
WriterMutexLock
&);
190
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h
297
// ReaderMutexLock and
WriterMutexLock
do the same, for rwlocks
309
class
WriterMutexLock
{
311
explicit
WriterMutexLock
(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
312
~
WriterMutexLock
() { mu_->WriterUnlock(); }
316
WriterMutexLock
(const
WriterMutexLock
&);
317
void operator=(const
WriterMutexLock
&);
323
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h
297
// ReaderMutexLock and
WriterMutexLock
do the same, for rwlocks
309
class
WriterMutexLock
{
311
explicit
WriterMutexLock
(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
312
~
WriterMutexLock
() { mu_->WriterUnlock(); }
316
WriterMutexLock
(const
WriterMutexLock
&);
317
void operator=(const
WriterMutexLock
&);
323
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
/external/open-vcdiff/gflags/src/
mutex.h
315
// ReaderMutexLock and
WriterMutexLock
do the same, for rwlocks
327
class
WriterMutexLock
{
329
explicit
WriterMutexLock
(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
330
~
WriterMutexLock
() { mu_->WriterUnlock(); }
334
WriterMutexLock
(const
WriterMutexLock
&);
335
void operator=(const
WriterMutexLock
&);
341
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
/external/regex-re2/util/
mutex.h
160
// ReaderMutexLock and
WriterMutexLock
do the same, for rwlocks
172
class
WriterMutexLock
{
174
explicit
WriterMutexLock
(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
175
~
WriterMutexLock
() { mu_->WriterUnlock(); }
179
WriterMutexLock
(const
WriterMutexLock
&);
180
void operator=(const
WriterMutexLock
&);
186
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
/art/runtime/base/
mutex.h
396
class SCOPED_LOCKABLE
WriterMutexLock
{
398
explicit
WriterMutexLock
(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
403
~
WriterMutexLock
() UNLOCK_FUNCTION() {
410
DISALLOW_COPY_AND_ASSIGN(
WriterMutexLock
);
412
// Catch bug where variable name is omitted. "
WriterMutexLock
(lock);" instead of
413
// "
WriterMutexLock
mu(lock)".
414
#define
WriterMutexLock
(x) COMPILE_ASSERT(0, writer_mutex_lock_declaration_missing_variable_name)
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.h
[
all
...]
/external/protobuf/src/google/protobuf/stubs/
common.h
[
all
...]
Completed in 1960 milliseconds