Home
last modified time | relevance | path

Searched refs:name_prefix (Results 1 – 13 of 13) sorted by relevance

/art/runtime/gc/collector/
Dpartial_mark_sweep.cc28 PartialMarkSweep::PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in PartialMarkSweep() argument
29 : MarkSweep(heap, is_concurrent, name_prefix.empty() ? "partial " : name_prefix) { in PartialMarkSweep()
Dsticky_mark_sweep.cc27 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in StickyMarkSweep() argument
28 : PartialMarkSweep(heap, is_concurrent, name_prefix.empty() ? "sticky " : name_prefix) { in StickyMarkSweep()
Dpartial_mark_sweep.h33 PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
Dsticky_mark_sweep.h33 StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
Dmark_compact.cc53 MarkCompact::MarkCompact(Heap* heap, const std::string& name_prefix) in MarkCompact() argument
54 : GarbageCollector(heap, name_prefix + (name_prefix.empty() ? "" : " ") + "mark compact"), in MarkCompact()
Dsemi_space.cc90 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix) in SemiSpace() argument
92 name_prefix + (name_prefix.empty() ? "" : " ") + "marksweep + semispace"), in SemiSpace()
Dsemi_space.h63 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
Dmark_compact.h62 explicit MarkCompact(Heap* heap, const std::string& name_prefix = "");
Dconcurrent_copying.h62 ConcurrentCopying(Heap* heap, const std::string& name_prefix = "");
Dmark_sweep.h57 MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
Dconcurrent_copying.cc42 ConcurrentCopying::ConcurrentCopying(Heap* heap, const std::string& name_prefix) in ConcurrentCopying() argument
44 name_prefix + (name_prefix.empty() ? "" : " ") + in ConcurrentCopying()
Dmark_sweep.cc92 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in MarkSweep() argument
94 name_prefix + in MarkSweep()
/art/cmdline/
Dtoken_range.h356 std::string name_prefix = name.substr(0, wildcard_idx); in MaybeMatches() local
359 if (!StartsWith(*token_it, name_prefix)) { in MaybeMatches()