HomeSort by relevance Sort by last modified time
    Searched defs:ReaderLock (Results 1 - 10 of 10) sorted by null

  /external/ceres-solver/internal/ceres/
mutex.h 163 inline void ReaderLock(); // Block until free or shared then acquire a share
207 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
220 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
241 void Mutex::ReaderLock() { CERES_SAFE_PTHREAD(pthread_rwlock_rdlock); }
262 void Mutex::ReaderLock() { Lock(); }
294 explicit CeresReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/chromium/sdch/open-vcdiff/src/
mutex.h 155 inline void ReaderLock(); // Block until free or shared then acquire a share
197 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
210 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
232 void Mutex::ReaderLock() { SAFE_PTHREAD(pthread_rwlock_rdlock); }
254 void Mutex::ReaderLock() { Lock(); }
278 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/chromium_org/third_party/re2/util/
mutex.h 69 inline void ReaderLock(); // Block until free or shared then acquire a share
104 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
117 void Mutex::ReaderLock() { SAFE_PTHREAD(pthread_rwlock_rdlock(&mutex_)); }
132 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
143 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
167 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h 171 inline void ReaderLock(); // Block until free or shared then acquire a share
213 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
231 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
253 void Mutex::ReaderLock() { SAFE_PTHREAD(pthread_rwlock_rdlock); }
276 void Mutex::ReaderLock() { Lock(); }
300 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h 171 inline void ReaderLock(); // Block until free or shared then acquire a share
213 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
231 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
253 void Mutex::ReaderLock() { SAFE_PTHREAD(pthread_rwlock_rdlock); }
276 void Mutex::ReaderLock() { Lock(); }
300 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/open-vcdiff/gflags/src/
mutex.h 181 inline void ReaderLock(); // Block until free or shared then acquire a share
225 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
245 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
269 void Mutex::ReaderLock() { SAFE_PTHREAD(pthread_rwlock_rdlock); }
294 void Mutex::ReaderLock() { Lock(); }
318 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/regex-re2/util/
mutex.h 65 inline void ReaderLock(); // Block until free or shared then acquire a share
100 void Mutex::ReaderLock() { assert(++mutex_ > 0); }
113 void Mutex::ReaderLock() { SAFE_PTHREAD(pthread_rwlock_rdlock(&mutex_)); }
128 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
139 void Mutex::ReaderLock() { Lock(); } // we don't have read-write locks
163 explicit ReaderMutexLock(Mutex *mu) : mu_(mu) { mu_->ReaderLock(); }
  /external/valgrind/unittest/
thread_wrappers_win.h 96 void ReaderLock() { Lock(); }
thread_wrappers_pthread.h 140 /// so the methods like ReaderLock() aren't really reader locks.
169 void ReaderLock() { Lock(); }
237 // ReaderLock method of Mutex to be the real rw-lock.
245 void ReaderLock() { CHECK(0 == pthread_rwlock_rdlock(&mu_)); }
269 mu_->ReaderLock();
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 181 /// so the methods like ReaderLock() aren't really reader locks.
210 void ReaderLock() { Lock(); }
296 // ReaderLock method of Mutex to be the real rw-lock.
304 void ReaderLock() { CHECK(0 == pthread_rwlock_rdlock(&mu_)); }
316 mu_->ReaderLock();

Completed in 366 milliseconds