Searched refs:name_prefix (Results 1 - 11 of 11) sorted by relevance

/art/runtime/gc/collector/
H A Dconcurrent_copying.h29 const std::string& name_prefix = "")
31 name_prefix + (name_prefix.empty() ? "" : " ") +
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
29 name_prefix.empty() ? "sticky " : name_prefix) {
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_compact.cc70 MarkCompact::MarkCompact(Heap* heap, const std::string& name_prefix) argument
71 : GarbageCollector(heap, name_prefix + (name_prefix.empty() ? "" : " ") + "mark compact"),
H A Dmark_compact.h62 explicit MarkCompact(Heap* heap, const std::string& name_prefix = "");
H A Dsemi_space.h63 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
H A Dmark_sweep.h57 explicit MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
H A Dsemi_space.cc88 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix) argument
90 name_prefix + (name_prefix.empty() ? "" : " ") + "marksweep + semispace"),
H A Dmark_sweep.cc94 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) argument
96 name_prefix +

Completed in 279 milliseconds