Searched defs:background_collector_type_ (Results 1 - 3 of 3) sorted by relevance

/art/runtime/
H A Dparsed_options.cc518 gc::CollectorType background_collector_type_; local
522 background_collector_type_ = args.GetOrDefault(M::BackgroundGc);
530 if (background_collector_type_ == gc::kCollectorTypeNone) {
532 background_collector_type_ = low_memory_mode_ ?
535 background_collector_type_ = collector_type_;
539 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ });
/art/cmdline/
H A Dcmdline_types.h535 // If background_collector_type_ is kCollectorTypeNone, it defaults to the
539 gc::CollectorType background_collector_type_; member in struct:art::BackgroundGcOption
542 : background_collector_type_(background_collector_type) {}
544 : background_collector_type_(gc::kCollectorTypeNone) {
547 background_collector_type_ = gc::kCollectorTypeCC; // Disable background compaction for CC.
551 operator gc::CollectorType() const { return background_collector_type_; }
560 background_collector_type_ = gc::kCollectorTypeHomogeneousSpaceCompact;
564 background_collector_type_ = collector_type;
/art/runtime/gc/
H A Dheap.h709 DCHECK_EQ(foreground_collector_type_, background_collector_type_)
1064 CollectorType background_collector_type_; member in class:art::gc::Heap

Completed in 94 milliseconds