Searched refs:collector_type (Results 1 – 9 of 9) sorted by relevance
/art/runtime/gc/ |
D | scoped_gc_critical_section.cc | 52 CollectorType collector_type) in ScopedGCCriticalSection() argument 54 old_no_suspend_reason_ = critical_section_.Enter(cause, collector_type); in ScopedGCCriticalSection()
|
D | collector_type.h | 69 std::ostream& operator<<(std::ostream& os, CollectorType collector_type);
|
D | scoped_gc_critical_section.h | 54 EXPORT ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
|
D | heap.h | 352 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()
|
D | heap.cc | 1648 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/ |
D | dex_file_layout.h | 48 std::ostream& operator<<(std::ostream& os, LayoutType collector_type); 102 std::ostream& operator<<(std::ostream& os, DexLayoutSections::SectionType collector_type);
|
/art/cmdline/ |
D | cmdline_types.h | 573 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/ |
D | statsd.cc | 302 constexpr int32_t EncodeGcCollectorType(gc::CollectorType collector_type) { in EncodeGcCollectorType() argument 303 switch (collector_type) { in EncodeGcCollectorType()
|
/art/runtime/ |
D | Android.bp | 768 "gc/collector_type.h",
|