Searched refs:is_concurrent (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/collector/
H A Dpartial_mark_sweep.cc28 PartialMarkSweep::PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) argument
29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) {
H A Dsticky_mark_sweep.cc27 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) argument
28 : PartialMarkSweep(heap, is_concurrent,
H A Dpartial_mark_sweep.h33 explicit PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
H A Dsticky_mark_sweep.h33 explicit StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
H A Dmark_sweep.h57 explicit MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
H A Dmark_sweep.cc94 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) argument
97 (is_concurrent ? "concurrent mark sweep": "mark sweep")),
101 is_concurrent_(is_concurrent), live_stack_freeze_size_(0) {

Completed in 42 milliseconds