HomeSort by relevance Sort by last modified time
    Searched refs:live_bitmap_ (Results 1 - 14 of 14) sorted by null

  /art/runtime/gc/space/
space.cc 82 live_bitmap_.reset(accounting::LargeObjectBitmap::Create("large live objects", nullptr,
84 CHECK(live_bitmap_.get() != nullptr);
129 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
135 live_bitmap_.swap(mark_bitmap_);
137 std::string temp_name(live_bitmap_->GetName());
138 live_bitmap_->SetName(mark_bitmap_->GetName());
image_space.h 90 return live_bitmap_.get();
96 return live_bitmap_.get();
181 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_; member in class:art::gc::space::ImageSpace
space.h 348 return live_bitmap_.get();
364 std::unique_ptr<accounting::LargeObjectBitmap> live_bitmap_; member in class:art::gc::space::DiscontinuousSpace
432 return live_bitmap_.get();
443 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
malloc_space.cc 55 live_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
58 CHECK(live_bitmap_.get() != nullptr) << "could not create allocspace live bitmap #"
209 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
210 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
216 live_bitmap_.release(), mark_bitmap_.release());
zygote_space.cc 55 CHECK(zygote_space->live_bitmap_.get() == nullptr);
57 zygote_space->live_bitmap_.reset(live_bitmap);
large_object_space.cc 105 live_bitmap_.swap(mark_bitmap_);
107 std::string temp_name = live_bitmap_->GetName();
108 live_bitmap_->SetName(mark_bitmap_->GetName());
120 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 282 live_bitmap_->Clear();
rosalloc_space.cc 362 live_bitmap_->Clear();
image_space.cc 73 live_bitmap_.reset(live_bitmap);
412 CHECK(live_bitmap_->Test(obj)) << obj->PrettyTypeOf();
    [all...]
  /art/runtime/jit/
jit_code_cache.h 150 return live_bitmap_.get();
353 std::unique_ptr<CodeCacheBitmap> live_bitmap_; member in class:art::jit::JitCodeCache
jit_code_cache.cc     [all...]
  /art/runtime/gc/
heap.h 581 return live_bitmap_.get();
    [all...]
heap.cc 307 live_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]
  /art/runtime/
class_linker.cc 1203 gc::accounting::HeapBitmap* const live_bitmap_; member in class:art::VerifyDeclaringClassVisitor::gc::accounting
    [all...]

Completed in 227 milliseconds