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

  /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/clang/test/SemaCXX/
warn-thread-safety-verbose.cpp 30 void ReaderLock() __attribute__((shared_lock_function));
69 mu.ReaderLock();
75 mu.ReaderLock();
warn-thread-safety-negative.cpp 33 void ReaderLock() __attribute__((shared_lock_function));
warn-thread-safety-analysis.cpp 33 void ReaderLock() __attribute__((shared_lock_function));
652 sls_mu.ReaderLock(); // \
673 sls_mu.ReaderLock();
675 sls_mu.ReaderLock();
685 sls_mu.ReaderLock(); // \
695 sls_mu.ReaderLock(); // \
706 sls_mu.ReaderLock(); // \
714 sls_mu.ReaderLock(); // \
756 aa_mu.ReaderLock();
774 sls_mu2.ReaderLock();
3698 void Foo::readerlock() { mu1_.ReaderLock(); mu2_.ReaderLock(); } function in class:MultipleAttributeTest::Foo
    [all...]
warn-thread-safety-parsing.cpp 30 void ReaderLock() SHARED_LOCK_FUNCTION();
    [all...]
  /external/valgrind/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();
tsan_unittest.cpp 1221 // test23: TN. TryLock, ReaderLock, ReaderTryLock. {{{1
1223 // Correct synchronization with TryLock, Lock, ReaderTryLock, ReaderLock.
1254 MU.ReaderLock();
    [all...]
  /external/clang/test/PCH/
thread-safety-attrs.cpp 36 void ReaderLock() __attribute__((shared_lock_function));
  /art/runtime/base/
mutex.h 339 void ReaderLock(Thread* self) ACQUIRE_SHARED() { SharedLock(self); }
  /external/regex-re2/re2/
dfa.cc     [all...]

Completed in 1548 milliseconds