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

  /art/runtime/gc/space/
space.cc 84 live_bitmap_.reset(accounting::LargeObjectBitmap::Create("large live objects", nullptr,
86 CHECK(live_bitmap_.get() != nullptr);
130 CHECK_EQ(mark_bitmap_.release(), live_bitmap_.get());
136 live_bitmap_.swap(mark_bitmap_);
138 std::string temp_name(live_bitmap_->GetName());
139 live_bitmap_->SetName(mark_bitmap_->GetName());
image_space.h 101 return live_bitmap_.get();
107 return live_bitmap_.get();
194 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
439 return live_bitmap_.get();
454 std::unique_ptr<accounting::ContinuousSpaceBitmap> live_bitmap_; member in class:art::gc::space::ContinuousMemMapAllocSpace
malloc_space.cc 66 live_bitmap_.reset(accounting::ContinuousSpaceBitmap::Create(
69 CHECK(live_bitmap_.get() != nullptr) << "could not create allocspace live bitmap #"
232 live_bitmap_->SetHeapLimit(reinterpret_cast<uintptr_t>(End()));
233 CHECK_EQ(live_bitmap_->HeapLimit(), reinterpret_cast<uintptr_t>(End()));
239 live_bitmap_.release(), mark_bitmap_.release());
zygote_space.cc 56 CHECK(zygote_space->live_bitmap_.get() == nullptr);
58 zygote_space->live_bitmap_.reset(live_bitmap);
large_object_space.cc 104 live_bitmap_.swap(mark_bitmap_);
106 std::string temp_name = live_bitmap_->GetName();
107 live_bitmap_->SetName(mark_bitmap_->GetName());
121 mark_bitmap_->CopyFrom(live_bitmap_.get());
dlmalloc_space.cc 340 live_bitmap_->Clear();
rosalloc_space.cc 430 live_bitmap_->Clear();
image_space.cc 80 live_bitmap_(std::move(live_bitmap)),
83 DCHECK(live_bitmap_ != nullptr);
351 CHECK(live_bitmap_->Test(obj)) << obj->PrettyTypeOf();
    [all...]
  /art/runtime/jit/
jit_code_cache.h 388 return live_bitmap_.get();
440 std::unique_ptr<CodeCacheBitmap> live_bitmap_; member in class:art::jit::JitCodeCache
jit_code_cache.cc     [all...]
  /art/runtime/gc/
heap.h 637 return live_bitmap_.get();
    [all...]
heap.cc 336 live_bitmap_.reset(new accounting::HeapBitmap(this));
    [all...]

Completed in 441 milliseconds