Searched refs:name_prefix (Results 1 – 13 of 13) sorted by relevance
/art/runtime/gc/collector/ |
D | partial_mark_sweep.cc | 28 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()
|
D | sticky_mark_sweep.cc | 27 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()
|
D | partial_mark_sweep.h | 33 PartialMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | sticky_mark_sweep.h | 33 StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | mark_compact.cc | 53 MarkCompact::MarkCompact(Heap* heap, const std::string& name_prefix) in MarkCompact() argument 54 : GarbageCollector(heap, name_prefix + (name_prefix.empty() ? "" : " ") + "mark compact"), in MarkCompact()
|
D | semi_space.cc | 90 SemiSpace::SemiSpace(Heap* heap, bool generational, const std::string& name_prefix) in SemiSpace() argument 92 name_prefix + (name_prefix.empty() ? "" : " ") + "marksweep + semispace"), in SemiSpace()
|
D | semi_space.h | 63 explicit SemiSpace(Heap* heap, bool generational = false, const std::string& name_prefix = "");
|
D | mark_compact.h | 62 explicit MarkCompact(Heap* heap, const std::string& name_prefix = "");
|
D | concurrent_copying.h | 62 ConcurrentCopying(Heap* heap, const std::string& name_prefix = "");
|
D | mark_sweep.h | 57 MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | concurrent_copying.cc | 42 ConcurrentCopying::ConcurrentCopying(Heap* heap, const std::string& name_prefix) in ConcurrentCopying() argument 44 name_prefix + (name_prefix.empty() ? "" : " ") + in ConcurrentCopying()
|
D | mark_sweep.cc | 92 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in MarkSweep() argument 94 name_prefix + in MarkSweep()
|
/art/cmdline/ |
D | token_range.h | 356 std::string name_prefix = name.substr(0, wildcard_idx); in MaybeMatches() local 359 if (!StartsWith(*token_it, name_prefix)) { in MaybeMatches()
|