OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:WriterMutexLock
(Results
1 - 2
of
2
) 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/protobuf/src/google/protobuf/stubs/
common.h
[
all
...]
Completed in 877 milliseconds