OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ReaderUnlock
(Results
1 - 4
of
4
) sorted by null
/external/ceres-solver/internal/ceres/
mutex.h
168
inline void
ReaderUnlock
(); // Release a read share of this Mutex
212
void Mutex::
ReaderUnlock
() { assert(mutex_-- > 0); }
225
void Mutex::
ReaderUnlock
() { Unlock(); }
246
void Mutex::
ReaderUnlock
() { CERES_SAFE_PTHREAD(pthread_rwlock_unlock); }
267
void Mutex::
ReaderUnlock
() { Unlock(); }
299
~CeresReaderMutexLock() { mu_->
ReaderUnlock
(); }
/external/chromium_org/third_party/re2/util/
mutex.h
70
inline void
ReaderUnlock
(); // Release a read share of this Mutex
105
void Mutex::
ReaderUnlock
() { assert(mutex_-- > 0); }
118
void Mutex::
ReaderUnlock
() { SAFE_PTHREAD(pthread_rwlock_unlock(&mutex_)); }
133
void Mutex::
ReaderUnlock
() { Unlock(); }
144
void Mutex::
ReaderUnlock
() { Unlock(); }
168
~ReaderMutexLock() { mu_->
ReaderUnlock
(); }
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h
172
inline void
ReaderUnlock
(); // Release a read share of this Mutex
214
void Mutex::
ReaderUnlock
() { assert(mutex_-- > 0); }
232
void Mutex::
ReaderUnlock
() { Unlock(); }
254
void Mutex::
ReaderUnlock
() { SAFE_PTHREAD(pthread_rwlock_unlock); }
277
void Mutex::
ReaderUnlock
() { Unlock(); }
301
~ReaderMutexLock() { mu_->
ReaderUnlock
(); }
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h
172
inline void
ReaderUnlock
(); // Release a read share of this Mutex
214
void Mutex::
ReaderUnlock
() { assert(mutex_-- > 0); }
232
void Mutex::
ReaderUnlock
() { Unlock(); }
254
void Mutex::
ReaderUnlock
() { SAFE_PTHREAD(pthread_rwlock_unlock); }
277
void Mutex::
ReaderUnlock
() { Unlock(); }
301
~ReaderMutexLock() { mu_->
ReaderUnlock
(); }
Completed in 181 milliseconds