OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:heap_bitmap_lock_
(Results
26 - 36
of
36
) sorted by null
1
2
/art/runtime/
intern_table_test.cc
117
ReaderMutexLock mu(soa.Self(), *Locks::
heap_bitmap_lock_
);
debugger.cc
[
all
...]
class_linker.cc
[
all
...]
/art/runtime/base/
mutex.cc
39
ReaderWriterMutex* Locks::
heap_bitmap_lock_
= nullptr;
member in class:art::Locks
861
DCHECK(
heap_bitmap_lock_
!= nullptr);
896
DCHECK(
heap_bitmap_lock_
== nullptr);
897
heap_bitmap_lock_
= new ReaderWriterMutex("heap bitmap lock", current_lock_level);
[
all
...]
mutex.h
559
static ReaderWriterMutex*
heap_bitmap_lock_
ACQUIRED_AFTER(mutator_lock_);
562
static Mutex* runtime_shutdown_lock_ ACQUIRED_AFTER(
heap_bitmap_lock_
);
/art/runtime/gc/space/
malloc_space.cc
234
Locks::
heap_bitmap_lock_
->AssertExclusiveHeld(self);
large_object_space.cc
495
Locks::
heap_bitmap_lock_
->AssertExclusiveHeld(self);
/art/runtime/hprof/
hprof.cc
429
LOCKS_EXCLUDED(Locks::
heap_bitmap_lock_
) {
435
ReaderMutexLock mu(self, *Locks::
heap_bitmap_lock_
);
[
all
...]
/art/oatdump/
oatdump.cc
[
all
...]
/art/patchoat/
patchoat.cc
452
WriterMutexLock mu(Thread::Current(), *Locks::
heap_bitmap_lock_
);
member in class:art::Locks
[
all
...]
/art/compiler/driver/
compiler_driver.cc
821
WriterMutexLock mu(self, *Locks::
heap_bitmap_lock_
);
[
all
...]
Completed in 336 milliseconds
1
2