Home
last modified time | relevance | path

Searched refs:PartialMarkSweep (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/collector/
Dpartial_mark_sweep.h26 class PartialMarkSweep : public MarkSweep {
33 PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
34 ~PartialMarkSweep() {} in ~PartialMarkSweep()
43 DISALLOW_IMPLICIT_CONSTRUCTORS(PartialMarkSweep);
Dpartial_mark_sweep.cc28 PartialMarkSweep::PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in PartialMarkSweep() function in art::gc::collector::PartialMarkSweep
33 void PartialMarkSweep::BindBitmaps() { in BindBitmaps()
Dsticky_mark_sweep.cc32 : PartialMarkSweep(heap, is_concurrent, name_prefix.empty() ? "sticky " : name_prefix) { in StickyMarkSweep()
37 PartialMarkSweep::BindBitmaps(); in BindBitmaps()
Dsticky_mark_sweep.h27 class StickyMarkSweep final : public PartialMarkSweep {
/art/runtime/gc/
Dheap.cc649 garbage_collectors_.push_back(new collector::PartialMarkSweep(this, concurrent)); in Heap()