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

1 2 3 4 5 6

  /external/chromium_org/third_party/leveldatabase/src/util/
mutexlock.h 14 // the destructor of the MutexLock object is invoked.
19 // MutexLock l(&mu_); // mu_ is an instance variable
23 class SCOPED_LOCKABLE MutexLock {
25 explicit MutexLock(port::Mutex *mu) EXCLUSIVE_LOCK_FUNCTION(mu)
29 ~MutexLock() UNLOCK_FUNCTION() { this->mu_->Unlock(); }
34 MutexLock(const MutexLock&);
35 void operator=(const MutexLock&);
  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
mutex.h 15 class MutexLock {
17 explicit MutexLock(Mutex* m) : auto_lock_(*m) {}
21 DISALLOW_COPY_AND_ASSIGN(MutexLock);
  /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_org/mojo/public/cpp/utility/
mutex.h 54 class MutexLock {
56 explicit MutexLock(Mutex* mutex) : mutex_(mutex) { mutex_->Lock(); }
57 ~MutexLock() { mutex_->Unlock(); }
62 MOJO_DISALLOW_COPY_AND_ASSIGN(MutexLock);
65 // Catch bug where variable name is omitted (e.g., |MutexLock (&mu)|).
66 #define MutexLock(x) MOJO_COMPILE_ASSERT(0, mutex_lock_missing_variable_name);
  /external/openfst/src/include/fst/
lock.h 59 class MutexLock {
61 MutexLock(Mutex *) {}
64 DISALLOW_COPY_AND_ASSIGN(MutexLock);
  /art/runtime/
barrier.cc 31 MutexLock mu(self, lock_);
40 MutexLock mu(self, lock_);
45 MutexLock mu(self, lock_);
61 MutexLock mu(self, lock_);
atomic.cc 47 MutexLock mu(Thread::Current(), *GetSwapMutex(addr));
52 MutexLock mu(Thread::Current(), *GetSwapMutex(addr));
58 MutexLock mu(Thread::Current(), *GetSwapMutex(addr));
thread_list.cc 58 MutexLock mu(self, *Locks::thread_list_lock_);
89 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
99 MutexLock mu(Thread::Current(), *Locks::thread_list_lock_);
132 MutexLock mu(self, *Locks::thread_list_lock_);
152 MutexLock mu(self, *Locks::thread_list_lock_);
153 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
212 MutexLock mu(self, *Locks::thread_list_lock_);
213 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
258 MutexLock mu2(self, *Locks::thread_suspend_count_lock_);
266 MutexLock mu2(self, *Locks::thread_suspend_count_lock_)
    [all...]
thread_pool.cc 69 MutexLock mu(self, task_queue_lock_);
100 MutexLock mu(Thread::Current(), task_queue_lock_);
108 MutexLock mu(self, task_queue_lock_);
120 MutexLock mu(self, task_queue_lock_);
128 MutexLock mu(self, task_queue_lock_);
133 MutexLock mu(self, task_queue_lock_);
165 MutexLock mu(self, task_queue_lock_);
187 MutexLock mu(self, task_queue_lock_);
198 MutexLock mu(self, task_queue_lock_);
215 MutexLock mu(self, thread_pool->work_steal_lock_)
    [all...]
intern_table.cc 38 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
43 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
48 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
57 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
94 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
152 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_);
206 MutexLock mu(self, *Locks::intern_table_lock_);
213 MutexLock mu(self, *Locks::intern_table_lock_);
222 MutexLock mu(self, *Locks::intern_table_lock_);
270 MutexLock mu(Thread::Current(), *Locks::intern_table_lock_)
    [all...]
  /external/chromium_org/third_party/re2/util/
atomicops.h 50 re2::MutexLock l(&mu);
mutex.h 78 // Catch the error of writing Mutex when intending MutexLock.
152 // MutexLock(mu) acquires mu when constructed and releases it when destroyed.
153 class MutexLock {
155 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
156 ~MutexLock() { mu_->Unlock(); }
160 MutexLock(const MutexLock&);
161 void operator=(const MutexLock&);
187 // Catch bug where variable name is omitted, e.g. MutexLock (&mu);
188 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name
    [all...]
  /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...]
  /art/runtime/gc/space/
bump_pointer_space.cc 78 MutexLock mu(Thread::Current(), block_lock_);
96 MutexLock mu(Thread::Current(), block_lock_);
102 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
103 MutexLock mu2(self, *Locks::thread_list_lock_);
113 MutexLock mu(Thread::Current(), block_lock_);
121 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
122 MutexLock mu2(self, *Locks::thread_list_lock_);
158 MutexLock mu(Thread::Current(), block_lock_);
212 MutexLock mu(self, *Locks::runtime_shutdown_lock_);
213 MutexLock mu2(self, *Locks::thread_list_lock_)
    [all...]
dlmalloc_space.cc 132 MutexLock mu(self, lock_);
160 MutexLock mu(self, lock_);
189 MutexLock mu(self, lock_);
210 MutexLock mu(self, lock_);
238 MutexLock mu(Thread::Current(), lock_);
249 MutexLock mu(Thread::Current(), lock_);
255 MutexLock mu(Thread::Current(), lock_);
260 MutexLock mu(Thread::Current(), lock_);
265 MutexLock mu(Thread::Current(), lock_);
278 MutexLock mu(Thread::Current(), lock_)
    [all...]
  /art/runtime/jdwp/
object_registry.cc 60 MutexLock mu(soa.Self(), lock_);
109 MutexLock mu(self, lock_);
129 MutexLock mu(self, lock_);
143 MutexLock mu(self, lock_);
152 MutexLock mu(self, lock_);
160 MutexLock mu(self, lock_);
190 MutexLock mu(self, lock_);
204 MutexLock mu(self, lock_);
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
profiler_unittest.cc 59 MutexLock ml(&mutex);
72 MutexLock ml(&mutex);
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
profiler_unittest.cc 59 MutexLock ml(&mutex);
72 MutexLock ml(&mutex);
  /external/chromium_org/third_party/leveldatabase/src/helpers/memenv/
memenv.cc 10 #include "util/mutexlock.h"
28 MutexLock lock(&refs_mutex_);
37 MutexLock lock(&refs_mutex_);
242 MutexLock lock(&mutex_);
254 MutexLock lock(&mutex_);
266 MutexLock lock(&mutex_);
280 MutexLock lock(&mutex_);
286 MutexLock lock(&mutex_);
311 MutexLock lock(&mutex_);
329 MutexLock lock(&mutex_)
    [all...]
  /art/runtime/gc/
reference_processor.cc 58 MutexLock mu(self, *Locks::reference_processor_lock_);
101 MutexLock mu(self, *Locks::reference_processor_lock_);
106 MutexLock mu(self, *Locks::reference_processor_lock_);
122 MutexLock mu(self, *Locks::reference_processor_lock_);
170 MutexLock mu(self, *Locks::reference_processor_lock_);
234 MutexLock mu(self, *Locks::reference_processor_lock_);
245 MutexLock mu2(self, *Locks::reference_queue_finalizer_references_lock_);
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h 187 // Catch the error of writing Mutex when intending MutexLock.
285 // MutexLock(mu) acquires mu when constructed and releases it when destroyed.
286 class MutexLock {
288 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
289 ~MutexLock() { mu_->Unlock(); }
293 MutexLock(const MutexLock&);
294 void operator=(const MutexLock&);
320 // Catch bug where variable name is omitted, e.g. MutexLock (&mu);
321 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h 187 // Catch the error of writing Mutex when intending MutexLock.
285 // MutexLock(mu) acquires mu when constructed and releases it when destroyed.
286 class MutexLock {
288 explicit MutexLock(Mutex *mu) : mu_(mu) { mu_->Lock(); }
289 ~MutexLock() { mu_->Unlock(); }
293 MutexLock(const MutexLock&);
294 void operator=(const MutexLock&);
320 // Catch bug where variable name is omitted, e.g. MutexLock (&mu);
321 #define MutexLock(x) COMPILE_ASSERT(0, mutex_lock_decl_missing_var_name
    [all...]
  /external/chromium_org/third_party/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_);
  /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_);

Completed in 393 milliseconds

1 2 3 4 5 6