Home
last modified time | relevance | path

Searched refs:CollectorType (Results 1 – 11 of 11) sorted by relevance

/art/runtime/gc/
Dcollector_type.h26 enum CollectorType { enum
47 std::ostream& operator<<(std::ostream& os, const CollectorType& collector_type);
49 static constexpr CollectorType kCollectorTypeDefault =
Dheap.h177 CollectorType foreground_collector_type, CollectorType background_collector_type,
243 void TransitionCollector(CollectorType collector_type);
246 void ChangeCollector(CollectorType collector_type)
647 CollectorType CurrentCollectorType() { in CurrentCollectorType()
674 bool MayUseCollector(CollectorType type) const;
724 static bool IsMovingGc(CollectorType collector_type) { in IsMovingGc()
790 void RequestCollectorTransition(CollectorType desired_collector_type, uint64_t delta_time)
936 CollectorType collector_type_;
938 CollectorType foreground_collector_type_;
940 CollectorType background_collector_type_;
[all …]
Dheap.cc121 const InstructionSet image_instruction_set, CollectorType foreground_collector_type, in Heap()
122 CollectorType background_collector_type, in Heap()
542 bool Heap::MayUseCollector(CollectorType type) const { in MayUseCollector()
1166 CollectorType desired_collector_type = desired_collector_type_; in DoPendingCollectorTransition()
1873 void Heap::TransitionCollector(CollectorType collector_type) { in TransitionCollector()
2017 void Heap::ChangeCollector(CollectorType collector_type) { in ChangeCollector()
3472 void Heap::RequestCollectorTransition(CollectorType desired_collector_type, uint64_t delta_time) { in RequestCollectorTransition()
/art/cmdline/
Dcmdline_types.h443 static gc::CollectorType ParseCollectorType(const std::string& option) {
464 gc::CollectorType collector_type_ = kUseReadBarrier ?
486 gc::CollectorType collector_type = ParseCollectorType(gc_option);
538 gc::CollectorType background_collector_type_;
540 BackgroundGcOption(gc::CollectorType background_collector_type) // NOLINT [runtime/explicit] [5]
550 operator gc::CollectorType() const { return background_collector_type_; }
561 gc::CollectorType collector_type = ParseCollectorType(substring);
Dcmdline_parser_test.cc279 option_all_true.collector_type_ = gc::CollectorType::kCollectorTypeCMS; in TEST_F()
296 option_all_false.collector_type_ = gc::CollectorType::kCollectorTypeMS; in TEST_F()
/art/runtime/gc/collector/
Dgarbage_collector.h134 virtual CollectorType GetCollectorType() const = 0;
Dsemi_space.h79 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
Dmark_compact.h77 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
Dconcurrent_copying.h159 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
Dmark_sweep.h79 virtual CollectorType GetCollectorType() const OVERRIDE { in GetCollectorType()
/art/runtime/
Dparsed_options.cc471 gc::CollectorType background_collector_type_; in Parse()
472 …gc::CollectorType collector_type_ = (XGcOption{}).collector_type_; // NOLINT [whitespace/braces] … in Parse()