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

1 2

  /external/chromium_org/third_party/re2/util/
mutex.h 164 // ReaderMutexLock and WriterMutexLock do the same, for rwlocks
176 class WriterMutexLock {
178 explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
179 ~WriterMutexLock() { mu_->WriterUnlock(); }
183 WriterMutexLock(const WriterMutexLock&);
184 void operator=(const WriterMutexLock&);
190 #define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
  /external/regex-re2/util/
mutex.h 160 // ReaderMutexLock and WriterMutexLock do the same, for rwlocks
172 class WriterMutexLock {
174 explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
175 ~WriterMutexLock() { mu_->WriterUnlock(); }
179 WriterMutexLock(const WriterMutexLock&);
180 void operator=(const WriterMutexLock&);
186 #define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
  /art/compiler/dex/
verification_results.cc 44 WriterMutexLock mu(self, verified_methods_lock_);
64 WriterMutexLock mu(Thread::Current(), verified_methods_lock_);
88 WriterMutexLock mu(Thread::Current(), verified_methods_lock_);
98 WriterMutexLock mu(Thread::Current(), rejected_classes_lock_);
  /art/runtime/gc/collector/
partial_mark_sweep.cc 36 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
sticky_mark_sweep.cc 36 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
mark_compact.cc 60 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
144 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
214 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
265 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
607 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
mark_sweep.cc 85 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
172 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
184 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
192 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
256 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
290 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
    [all...]
semi_space.cc 63 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
157 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
231 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
393 WriterMutexLock mu(self_, *Locks::heap_bitmap_lock_);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
simple_mutex.h 297 // ReaderMutexLock and WriterMutexLock do the same, for rwlocks
309 class WriterMutexLock {
311 explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
312 ~WriterMutexLock() { mu_->WriterUnlock(); }
316 WriterMutexLock(const WriterMutexLock&);
317 void operator=(const WriterMutexLock&);
323 #define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
simple_mutex.h 297 // ReaderMutexLock and WriterMutexLock do the same, for rwlocks
309 class WriterMutexLock {
311 explicit WriterMutexLock(Mutex *mu) : mu_(mu) { mu_->WriterLock(); }
312 ~WriterMutexLock() { mu_->WriterUnlock(); }
316 WriterMutexLock(const WriterMutexLock&);
317 void operator=(const WriterMutexLock&);
323 #define WriterMutexLock(x) COMPILE_ASSERT(0, wmutex_lock_decl_missing_var_name)
  /art/compiler/dex/quick/
dex_file_to_method_inliner_map.cc 55 // can use WriterMutexLock.
58 WriterMutexLock mu(self, lock_);
dex_file_method_inliner.cc 697 WriterMutexLock mu(Thread::Current(), lock_);
    [all...]
  /art/runtime/base/
mutex.h 461 class SCOPED_LOCKABLE WriterMutexLock {
463 explicit WriterMutexLock(Thread* self, ReaderWriterMutex& mu) EXCLUSIVE_LOCK_FUNCTION(mu) :
468 ~WriterMutexLock() UNLOCK_FUNCTION() {
475 DISALLOW_COPY_AND_ASSIGN(WriterMutexLock);
477 // Catch bug where variable name is omitted. "WriterMutexLock (lock);" instead of
478 // "WriterMutexLock mu(lock)".
479 #define WriterMutexLock(x) COMPILE_ASSERT(0, writer_mutex_lock_declaration_missing_variable_name)
  /external/protobuf/src/google/protobuf/
message.cc 281 WriterMutexLock lock(&mutex_);
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.h     [all...]
  /external/protobuf/src/google/protobuf/stubs/
common.h     [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
message.cc 320 WriterMutexLock lock(&mutex_);
  /art/runtime/gc/
heap.cc 548 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
    [all...]
  /art/runtime/
instrumentation.cc 791 WriterMutexLock mu(self, deoptimized_methods_lock_);
821 WriterMutexLock mu(self, deoptimized_methods_lock_);
    [all...]
class_linker.cc 677 WriterMutexLock mu(Thread::Current(), dex_lock_);
    [all...]
  /art/compiler/
image_writer.cc     [all...]
  /art/compiler/driver/
compiler_driver.cc 821 WriterMutexLock mu(self, *Locks::heap_bitmap_lock_);
    [all...]
  /art/runtime/gc/allocator/
rosalloc.cc     [all...]
  /art/patchoat/
patchoat.cc 452 WriterMutexLock mu(Thread::Current(), *Locks::heap_bitmap_lock_);
    [all...]
  /art/oatdump/
oatdump.cc     [all...]

Completed in 697 milliseconds

1 2