HomeSort by relevance Sort by last modified time
    Searched refs:background_collector_type_ (Results 1 - 4 of 4) sorted by null

  /art/cmdline/
cmdline_types.h 573 // If background_collector_type_ is kCollectorTypeNone, it defaults to the
577 gc::CollectorType background_collector_type_; member in struct:art::BackgroundGcOption
580 : background_collector_type_(background_collector_type) {}
582 : background_collector_type_(gc::kCollectorTypeNone) {
585 operator gc::CollectorType() const { return background_collector_type_; }
594 background_collector_type_ = gc::kCollectorTypeHomogeneousSpaceCompact;
598 background_collector_type_ = collector_type;
  /art/runtime/
parsed_options.cc 546 gc::CollectorType background_collector_type_; local
550 background_collector_type_ = args.GetOrDefault(M::BackgroundGc);
558 if (background_collector_type_ == gc::kCollectorTypeNone) {
560 background_collector_type_ = low_memory_mode_ ?
563 background_collector_type_ = collector_type_;
567 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ });
    [all...]
  /art/runtime/gc/
heap.cc 199 background_collector_type_(background_collector_type),
290 CHECK_EQ(background_collector_type_, kCollectorTypeCCBackground);
301 if (background_collector_type_ != foreground_collector_type_) {
303 background_collector_type_ = foreground_collector_type_;
346 background_collector_type_ == gc::kCollectorTypeHomogeneousSpaceCompact ||
354 IsMovingGc(background_collector_type_);
410 background_collector_type_ == kCollectorTypeSS ||
464 CHECK_EQ(foreground_collector_type_, background_collector_type_);
657 return foreground_collector_type_ == type || background_collector_type_ == type;
    [all...]
heap.h 1137 CollectorType background_collector_type_; member in class:art::gc::Heap
    [all...]

Completed in 62 milliseconds