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

  /art/runtime/gc/space/
image_space.h 68 return live_bitmap_.get();
74 return live_bitmap_.get();
100 UniquePtr<accounting::SpaceBitmap> live_bitmap_; member in class:art::gc::space::ImageSpace
dlmalloc_space.cc 133 live_bitmap_.reset(accounting::SpaceBitmap::Create(
136 DCHECK(live_bitmap_.get() != NULL) << "could not create allocspace live bitmap #" << bitmap_index;
141 DCHECK(live_bitmap_.get() != NULL) << "could not create allocspace mark bitmap #" << bitmap_index;
240 live_bitmap_.swap(mark_bitmap_);
242 std::string temp_name(live_bitmap_->GetName());
243 live_bitmap_->SetName(mark_bitmap_->GetName());
320 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
321 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
dlmalloc_space.h 113 return live_bitmap_.get();
161 UniquePtr<accounting::SpaceBitmap> live_bitmap_; member in class:art::gc::space::DlMallocSpace
image_space.cc 44 live_bitmap_.reset(live_bitmap);
157 CHECK(live_bitmap_->Test(obj));
  /art/runtime/gc/
heap.h 349 return live_bitmap_.get();
662 UniquePtr<accounting::HeapBitmap> live_bitmap_ GUARDED_BY(Locks::heap_bitmap_lock_);
heap.cc 144 live_bitmap_.reset(new accounting::HeapBitmap(this));
379 live_bitmap_->AddContinuousSpaceBitmap(space->GetLiveBitmap());
425 live_bitmap_->AddDiscontinuousObjectSet(space->GetLiveObjects());
    [all...]
  /art/runtime/gc/collector/
mark_sweep.cc     [all...]

Completed in 218 milliseconds