Home
last modified time | relevance | path

Searched refs:collector_type (Results 1 – 8 of 8) sorted by relevance

/art/libdexfile/dex/
Ddex_file_layout.h48 std::ostream& operator<<(std::ostream& os, LayoutType collector_type);
63 std::ostream& operator<<(std::ostream& os, MadviseState collector_type);
121 std::ostream& operator<<(std::ostream& os, DexLayoutSections::SectionType collector_type);
/art/runtime/gc/
Dscoped_gc_critical_section.cc52 CollectorType collector_type) in ScopedGCCriticalSection() argument
54 old_no_suspend_reason_ = critical_section_.Enter(cause, collector_type); in ScopedGCCriticalSection()
Dcollector_type.h63 std::ostream& operator<<(std::ostream& os, CollectorType collector_type);
Dscoped_gc_critical_section.h53 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
Dheap.h334 void ChangeCollector(CollectorType collector_type)
976 void StartGC(Thread* self, GcCause cause, CollectorType collector_type)
1018 static bool IsMovingGc(CollectorType collector_type) { in IsMovingGc() argument
1020 collector_type == kCollectorTypeCC || in IsMovingGc()
1021 collector_type == kCollectorTypeSS || in IsMovingGc()
1022 collector_type == kCollectorTypeCCBackground || in IsMovingGc()
1023 collector_type == kCollectorTypeHomogeneousSpaceCompact; in IsMovingGc()
Dheap.cc1543 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC() argument
1550 collector_type_running_ = collector_type; in StartGC()
2131 void Heap::ChangeCollector(CollectorType collector_type) { in ChangeCollector() argument
2133 if (collector_type != collector_type_) { in ChangeCollector()
2134 collector_type_ = collector_type; in ChangeCollector()
/art/cmdline/
Dcmdline_types.h519 gc::CollectorType collector_type = ParseCollectorType(gc_option);
520 if (collector_type != gc::kCollectorTypeNone) {
521 xgc.collector_type_ = collector_type;
611 gc::CollectorType collector_type = ParseCollectorType(substring);
612 if (collector_type != gc::kCollectorTypeNone) {
613 background_collector_type_ = collector_type;
/art/runtime/
DAndroid.bp543 "gc/collector_type.h",