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

  /frameworks/ex/variablespeed/jni/
no_synchronization.h 40 class MutexLock {
42 explicit MutexLock(Mutex* mu) : mu_(mu) {}
43 virtual ~MutexLock() {}
47 DISALLOW_COPY_AND_ASSIGN(MutexLock);
  /external/chromium/sdch/open-vcdiff/src/
mutex.h 169 // Catch the error of writing Mutex when intending MutexLock.
263 // MutexLock(mu) acquires mu when constructed and releases it when destroyed.
264 class MutexLock {
266 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
267 ~MutexLock() { mu_->Unlock(); }
271 MutexLock(const MutexLock&);
272 void operator=(const MutexLock&);
298 // Catch bug where variable name is omitted, e.g. MutexLock (&mu);
299 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
compat.cpp 135 MutexLock::MutexLock(Mutex *mutex) {} // ?OP?
compat.h 62 class MutexLock {
64 MutexLock(Mutex *);
67 DISALLOW_EVIL_CONSTRUCTORS(MutexLock);
98 MutexLock l(register_lock_);
104 MutexLock l(register_lock_);
  /external/valgrind/unittest/
thread_wrappers.h 282 class MutexLock { // Scoped Mutex Locker/Unlocker
284 MutexLock(Mutex *mu)
288 ~MutexLock() {
300 MutexLock lock(&mu_);
  /external/protobuf/src/google/protobuf/stubs/
common.h     [all...]
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 261 class MutexLock { // Scoped Mutex Locker/Unlocker
263 MutexLock(Mutex *mu)
267 ~MutexLock() {
576 MutexLock lock(&mu_);
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 86 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
438 // We cannot call it MutexLock directly as the ctor declaration would
439 // conflict with a macro named MutexLock, which is defined on some
446 typedef GTestMutexLock MutexLock;
  /external/gtest/include/gtest/internal/
gtest-port.h 106 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
649 // We cannot call it MutexLock directly as the ctor declaration would
650 // conflict with a macro named MutexLock, which is defined on some
657 typedef GTestMutexLock MutexLock;
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 115 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
756 // We cannot call it MutexLock directly as the ctor declaration would
757 // conflict with a macro named MutexLock, which is defined on some
764 typedef GTestMutexLock MutexLock;
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 134 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 136 // Mutex, MutexLock, ThreadLocal, GetThreadCount()
    [all...]

Completed in 6029 milliseconds