HomeSort by relevance Sort by last modified time
    Searched refs:MutexLock (Results 1 - 25 of 51) sorted by null

1 2 3

  /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);
sola_time_scaler.cc 74 MutexLock lock(&mutex_); // lock out processing while updating
85 MutexLock lock(&mutex_); // lock out processing while updating
100 MutexLock lock(&mutex_); // lock out processing while updating
254 MutexLock lock(&mutex_); // lock out updates while processing each window
  /external/openfst/src/include/fst/
lock.h 56 class MutexLock {
58 MutexLock(Mutex *) {}
61 DISALLOW_COPY_AND_ASSIGN(MutexLock);
generic-register.h 55 MutexLock l(register_lock_);
100 MutexLock l(register_lock_);
  /external/valgrind/unittest/output_tests/
output_test1.cc 7 MutexLock lock(&mu1); // Correct Mutex.
12 MutexLock lock(&mu2); // Wrong Mutex.
  /external/regex-re2/util/
atomicops.h 50 re2::MutexLock l(&mu);
mutex.h 74 // Catch the error of writing Mutex when intending MutexLock.
148 // MutexLock(mu) acquires mu when constructed and releases it when destroyed.
149 class MutexLock {
151 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
152 ~MutexLock() { mu_->Unlock(); }
156 MutexLock(const MutexLock&);
157 void operator=(const MutexLock&);
183 // Catch bug where variable name is omitted, e.g. MutexLock (&mu);
184 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name
    [all...]
  /external/valgrind/unittest/
atomicity_tests.cc 48 MutexLock l(&mu_);
53 MutexLock l(&mu_);
58 MutexLock l(&mu_);
demo_tests.cc 47 MutexLock lock(&mu1); // Correct Mutex.
52 MutexLock lock(&mu2); // Wrong Mutex.
335 MutexLock lock3(&mu3); // This lock is unrelated to PTR.
336 MutexLock lock1(&mu1); // Protect PTR.
341 MutexLock lock2(&mu2); // This lock is unrelated to PTR.
342 MutexLock lock1(&mu1); // Protect PTR.
351 MutexLock lock2(&mu2); // Oh, gosh, this is a wrong mutex!
393 MutexLock lock3(&mu3); // This lock is unrelated to PTR.
394 MutexLock lock1(&mu1); // Protect PTR.
399 MutexLock lock2(&mu2); // This lock is unrelated to PTR
    [all...]
thread_wrappers.h 282 class MutexLock { // Scoped Mutex Locker/Unlocker
284 MutexLock(Mutex *mu)
288 ~MutexLock() {
300 MutexLock lock(&mu_);
test_utils.h 45 #define WriterLockScoped 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/chromium/testing/gmock/src/
gmock-spec-builders.cc 177 MutexLock l(&mutex_);
272 MutexLock l(&g_gmock_mutex);
286 MutexLock l(&g_gmock_mutex);
299 MutexLock l(&g_gmock_mutex);
316 MutexLock l(&g_gmock_mutex);
584 internal::MutexLock l(&internal::g_gmock_mutex);
615 internal::MutexLock l(&internal::g_gmock_mutex);
624 internal::MutexLock l(&internal::g_gmock_mutex);
633 internal::MutexLock l(&internal::g_gmock_mutex);
642 internal::MutexLock l(&internal::g_gmock_mutex)
    [all...]
gmock-internal-utils.cc 137 MutexLock l(&g_log_mutex);
  /external/protobuf/src/google/protobuf/stubs/
once_unittest.cc 88 MutexLock lock(&done_mutex_);
124 MutexLock lock(&done_mutex_);
142 MutexLock lock(&mutex_);
162 MutexLock lock(&mutex_);
common.cc 185 MutexLock lock(log_silencer_count_mutex_);
219 MutexLock lock(internal::log_silencer_count_mutex_);
225 MutexLock lock(internal::log_silencer_count_mutex_);
339 MutexLock lock(shutdown_functions_mutex);
common.h     [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-linked_ptr.h 110 MutexLock lock(&g_linked_ptr_mutex);
122 MutexLock lock(&g_linked_ptr_mutex);
  /external/gtest/include/gtest/internal/
gtest-linked_ptr.h 110 MutexLock lock(&g_linked_ptr_mutex);
122 MutexLock lock(&g_linked_ptr_mutex);
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-linked_ptr.h 110 MutexLock lock(&g_linked_ptr_mutex);
122 MutexLock lock(&g_linked_ptr_mutex);
  /external/protobuf/gtest/include/gtest/internal/
gtest-linked_ptr.h 110 MutexLock lock(&g_linked_ptr_mutex);
122 MutexLock lock(&g_linked_ptr_mutex);
  /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_);
register.h 67 MutexLock l(register_lock_);
78 MutexLock l(register_lock_);
  /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_);

Completed in 3072 milliseconds

1 2 3