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.h327 void ChangeCollector(CollectorType collector_type)
941 void StartGC(Thread* self, GcCause cause, CollectorType collector_type)
983 static bool IsMovingGc(CollectorType collector_type) { in IsMovingGc() argument
985 collector_type == kCollectorTypeCC || in IsMovingGc()
986 collector_type == kCollectorTypeSS || in IsMovingGc()
987 collector_type == kCollectorTypeCCBackground || in IsMovingGc()
988 collector_type == kCollectorTypeHomogeneousSpaceCompact; in IsMovingGc()
Dheap.cc1487 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC() argument
1494 collector_type_running_ = collector_type; in StartGC()
2134 void Heap::ChangeCollector(CollectorType collector_type) { in ChangeCollector() argument
2136 if (collector_type != collector_type_) { in ChangeCollector()
2137 collector_type_ = collector_type; in ChangeCollector()
/art/cmdline/
Dcmdline_types.h502 gc::CollectorType collector_type = ParseCollectorType(gc_option);
503 if (collector_type != gc::kCollectorTypeNone) {
504 xgc.collector_type_ = collector_type;
594 gc::CollectorType collector_type = ParseCollectorType(substring);
595 if (collector_type != gc::kCollectorTypeNone) {
596 background_collector_type_ = collector_type;
/art/runtime/
DAndroid.bp522 "gc/collector_type.h",