HomeSort by: relevance | last modified time | path
    Searched defs:MutexLock (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/
mutex.h 87 class SCOPED_CAPABILITY MutexLock {
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
92 ~MutexLock() RELEASE() {}
107 MutexLock ml(lock_);
115 MutexLock ml(lock_);
132 bool createBarrier(MutexLock& ml) REQUIRES(lock_) {
  /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/
mutex.h 87 class SCOPED_CAPABILITY MutexLock {
91 MutexLock(Mutex& m) ACQUIRE(m) : ml_(m.native_handle()) {}
92 ~MutexLock() RELEASE() {}
107 MutexLock ml(lock_);
115 MutexLock ml(lock_);
132 bool createBarrier(MutexLock& ml) REQUIRES(lock_) {
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 202 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
1352 // with class MutexLock:
1356 // MutexLock lock(&mutex); // Acquires the mutex and releases it at the
1412 // We cannot name this class MutexLock because the ctor declaration would
1413 // conflict with a macro named MutexLock, which is defined on some
1415 // inadvertent misuses of MutexLock like "MutexLock(&mu)" rather than
1416 // "MutexLock l(&mu)". Hence the typedef trick below.
1430 typedef GTestMutexLock MutexLock;
1701 // We cannot name this class MutexLock because the ctor declaration woul
    [all...]

Completed in 33 milliseconds