Searched refs:name_prefix (Results 1 – 11 of 11) 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 | 31 StickyMarkSweep::StickyMarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in StickyMarkSweep() argument 32 : 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 | semi_space.cc | 80 SemiSpace::SemiSpace(Heap* heap, const std::string& name_prefix) in SemiSpace() argument 82 name_prefix + (name_prefix.empty() ? "" : " ") + "semispace"), in SemiSpace()
|
D | semi_space.h | 62 explicit SemiSpace(Heap* heap, const std::string& name_prefix = "");
|
D | mark_sweep.h | 56 MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
|
D | concurrent_copying.h | 73 const std::string& name_prefix = "",
|
D | mark_sweep.cc | 94 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in MarkSweep() argument 96 name_prefix + in MarkSweep()
|
D | concurrent_copying.cc | 73 const std::string& name_prefix, in ConcurrentCopying() argument 76 name_prefix + (name_prefix.empty() ? "" : " ") + in ConcurrentCopying()
|
/art/cmdline/ |
D | token_range.h | 358 std::string name_prefix = name.substr(0, wildcard_idx); in MaybeMatches() local 361 if (!StartsWith(*token_it, name_prefix)) { in MaybeMatches()
|