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 512 // If background_collector_type_ is kCollectorTypeNone, it defaults to the
516 gc::CollectorType background_collector_type_; member in struct:art::BackgroundGcOption
519 : background_collector_type_(background_collector_type) {}
521 : background_collector_type_(gc::kCollectorTypeNone) {
524 operator gc::CollectorType() const { return background_collector_type_; }
533 background_collector_type_ = gc::kCollectorTypeHomogeneousSpaceCompact;
537 background_collector_type_ = collector_type;
  /art/runtime/
parsed_options.cc 594 gc::CollectorType background_collector_type_; local
598 background_collector_type_ = args.GetOrDefault(M::BackgroundGc);
606 if (background_collector_type_ == gc::kCollectorTypeNone) {
608 background_collector_type_ = low_memory_mode_ ?
611 background_collector_type_ = collector_type_;
615 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ });
    [all...]
  /art/runtime/gc/
heap.cc 217 background_collector_type_(background_collector_type),
319 CHECK_EQ(background_collector_type_, kCollectorTypeCCBackground);
330 if (background_collector_type_ != foreground_collector_type_) {
332 background_collector_type_ = foreground_collector_type_;
345 background_collector_type_ == gc::kCollectorTypeHomogeneousSpaceCompact ||
353 IsMovingGc(background_collector_type_);
473 background_collector_type_ == kCollectorTypeSS ||
533 CHECK_EQ(foreground_collector_type_, background_collector_type_);
    [all...]
heap.h 1233 CollectorType background_collector_type_; member in class:art::gc::Heap
    [all...]

Completed in 184 milliseconds