Home
last modified time | relevance | path

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

/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.h69 std::ostream& operator<<(std::ostream& os, CollectorType collector_type);
Dscoped_gc_critical_section.h54 EXPORT ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
Dheap.h352 void ChangeCollector(CollectorType collector_type)
1043 void StartGC(Thread* self, GcCause cause, CollectorType collector_type)
1045 void StartGCRunnable(Thread* self, GcCause cause, CollectorType collector_type)
1078 static bool IsMovingGc(CollectorType collector_type) { in IsMovingGc() argument
1080 collector_type == kCollectorTypeCC || in IsMovingGc()
1081 collector_type == kCollectorTypeSS || in IsMovingGc()
1082 collector_type == kCollectorTypeCMC || in IsMovingGc()
1083 collector_type == kCollectorTypeCCBackground || in IsMovingGc()
1084 collector_type == kCollectorTypeCMCBackground || in IsMovingGc()
1085 collector_type == kCollectorTypeHomogeneousSpaceCompact; in IsMovingGc()
Dheap.cc1648 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC() argument
1655 StartGCRunnable(self, cause, collector_type); in StartGC()
1662 collector_type_running_ = collector_type; in StartGC()
1668 void Heap::StartGCRunnable(Thread* self, GcCause cause, CollectorType collector_type) { in StartGCRunnable() argument
1676 collector_type_running_ = collector_type; in StartGCRunnable()
2296 void Heap::ChangeCollector(CollectorType collector_type) { in ChangeCollector() argument
2298 if (collector_type != collector_type_) { in ChangeCollector()
2299 collector_type_ = collector_type; in ChangeCollector()
/art/libdexfile/dex/
Ddex_file_layout.h48 std::ostream& operator<<(std::ostream& os, LayoutType collector_type);
102 std::ostream& operator<<(std::ostream& os, DexLayoutSections::SectionType collector_type);
/art/cmdline/
Dcmdline_types.h573 gc::CollectorType collector_type = ParseCollectorType(gc_option);
574 if (collector_type != gc::kCollectorTypeNone) {
575 xgc.collector_type_ = collector_type;
665 gc::CollectorType collector_type = ParseCollectorType(substring);
666 if (collector_type != gc::kCollectorTypeNone) {
667 background_collector_type_ = collector_type;
/art/runtime/metrics/
Dstatsd.cc302 constexpr int32_t EncodeGcCollectorType(gc::CollectorType collector_type) { in EncodeGcCollectorType() argument
303 switch (collector_type) { in EncodeGcCollectorType()
/art/runtime/
DAndroid.bp768 "gc/collector_type.h",