Home
last modified time | relevance | path

Searched refs:name_prefix (Results 1 – 11 of 11) 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.cc31 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()
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 = "");
Dsemi_space.cc80 SemiSpace::SemiSpace(Heap* heap, const std::string& name_prefix) in SemiSpace() argument
82 name_prefix + (name_prefix.empty() ? "" : " ") + "semispace"), in SemiSpace()
Dsemi_space.h62 explicit SemiSpace(Heap* heap, const std::string& name_prefix = "");
Dmark_sweep.h56 MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix = "");
Dconcurrent_copying.h73 const std::string& name_prefix = "",
Dmark_sweep.cc94 MarkSweep::MarkSweep(Heap* heap, bool is_concurrent, const std::string& name_prefix) in MarkSweep() argument
96 name_prefix + in MarkSweep()
Dconcurrent_copying.cc73 const std::string& name_prefix, in ConcurrentCopying() argument
76 name_prefix + (name_prefix.empty() ? "" : " ") + in ConcurrentCopying()
/art/cmdline/
Dtoken_range.h358 std::string name_prefix = name.substr(0, wildcard_idx); in MaybeMatches() local
361 if (!StartsWith(*token_it, name_prefix)) { in MaybeMatches()