Searched refs:CollectorType (Results 1 – 14 of 14) sorted by relevance
/art/runtime/gc/ |
D | collector_type.h | 26 enum CollectorType { enum 67 std::ostream& operator<<(std::ostream& os, const CollectorType& collector_type); 69 static constexpr CollectorType kCollectorTypeDefault =
|
D | system_weak_test.cc | 110 CollectorType type = Runtime::Current()->GetHeap()->CurrentCollectorType(); in CollectorDoesAllowOrBroadcast() 112 case CollectorType::kCollectorTypeCMS: in CollectorDoesAllowOrBroadcast() 113 case CollectorType::kCollectorTypeCC: in CollectorDoesAllowOrBroadcast() 122 CollectorType type = Runtime::Current()->GetHeap()->CurrentCollectorType(); in CollectorDoesDisallow() 124 case CollectorType::kCollectorTypeCMS: in CollectorDoesDisallow()
|
D | scoped_gc_critical_section.h | 35 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
|
D | scoped_gc_critical_section.cc | 29 CollectorType collector_type) in ScopedGCCriticalSection()
|
D | heap.h | 180 CollectorType foreground_collector_type, 181 CollectorType background_collector_type, 280 void TransitionCollector(CollectorType collector_type) REQUIRES(!*gc_complete_lock_); 283 void ChangeCollector(CollectorType collector_type) 734 CollectorType CurrentCollectorType() { in CurrentCollectorType() 760 bool MayUseCollector(CollectorType type) const; 848 void StartGC(Thread* self, GcCause cause, CollectorType collector_type) 877 static bool IsMovingGc(CollectorType collector_type) { in IsMovingGc() 965 void RequestCollectorTransition(CollectorType desired_collector_type, uint64_t delta_time) 1136 CollectorType collector_type_; [all …]
|
D | heap.cc | 174 CollectorType foreground_collector_type, in Heap() 175 CollectorType background_collector_type, in Heap() 653 bool Heap::MayUseCollector(CollectorType type) const { in MayUseCollector() 1245 CollectorType desired_collector_type = desired_collector_type_; in DoPendingCollectorTransition() 1319 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC() 1962 void Heap::TransitionCollector(CollectorType collector_type) { in TransitionCollector() 2121 void Heap::ChangeCollector(CollectorType collector_type) { in ChangeCollector() 3650 void Heap::RequestCollectorTransition(CollectorType desired_collector_type, uint64_t delta_time) { in RequestCollectorTransition()
|
/art/cmdline/ |
D | cmdline_types.h | 408 static gc::CollectorType ParseCollectorType(const std::string& option) { 429 gc::CollectorType collector_type_ = gc::kCollectorTypeDefault; 449 gc::CollectorType collector_type = ParseCollectorType(gc_option); 503 gc::CollectorType background_collector_type_; 505 BackgroundGcOption(gc::CollectorType background_collector_type) // NOLINT [runtime/explicit] [5] 511 operator gc::CollectorType() const { return background_collector_type_; } 522 gc::CollectorType collector_type = ParseCollectorType(substring);
|
D | cmdline_parser_test.cc | 326 option_all_true.collector_type_ = gc::CollectorType::kCollectorTypeCMS; in TEST_F() 343 option_all_false.collector_type_ = gc::CollectorType::kCollectorTypeMS; in TEST_F()
|
/art/runtime/gc/collector/ |
D | garbage_collector.h | 68 virtual CollectorType GetCollectorType() const = 0;
|
D | semi_space.h | 78 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
|
D | mark_compact.h | 76 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
|
D | mark_sweep.h | 79 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
|
D | concurrent_copying.h | 92 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
|
/art/runtime/ |
D | parsed_options.cc | 564 gc::CollectorType background_collector_type_; in DoParse() 565 gc::CollectorType collector_type_ = (XGcOption{}).collector_type_; in DoParse()
|