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

  /art/runtime/gc/space/
space.cc 76 live_bitmap_.reset(accounting::LargeObjectBitmap::Create("large live objects", nullptr,
78 CHECK(live_bitmap_.get() != nullptr);
123 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
129 live_bitmap_.swap(mark_bitmap_);
131 std::string temp_name(live_bitmap_->GetName());
132 live_bitmap_->SetName(mark_bitmap_->GetName());
image_space.h 89 return live_bitmap_.get();
95 return live_bitmap_.get();
145 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_; member in class:art::gc::space::ImageSpace
malloc_space.cc 51 live_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
54 CHECK(live_bitmap_.get() != nullptr) << "could not create allocspace live bitmap #"
59 CHECK(live_bitmap_.get() != nullptr) << "could not create allocspace mark bitmap #"
204 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
205 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
211 live_bitmap_.release(), mark_bitmap_.release());
space.h 328 return live_bitmap_.get();
344 std::unique_ptr<accounting::LargeObjectBitmap> live_bitmap_; member in class:art::gc::space::DiscontinuousSpace
413 return live_bitmap_.get();
424 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
zygote_space.cc 53 CHECK(zygote_space->live_bitmap_.get() == nullptr);
55 zygote_space->live_bitmap_.reset(live_bitmap);
large_object_space.cc 80 live_bitmap_.swap(mark_bitmap_);
82 std::string temp_name = live_bitmap_->GetName();
83 live_bitmap_->SetName(mark_bitmap_->GetName());
95 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 294 live_bitmap_->Clear();
rosalloc_space.cc 350 live_bitmap_->Clear();
image_space.cc 49 live_bitmap_.reset(live_bitmap);
616 CHECK(live_bitmap_->Test(obj));
    [all...]
  /art/runtime/gc/
heap.h 477 return live_bitmap_.get();
    [all...]
heap.cc 217 live_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]

Completed in 46 milliseconds