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 535 // 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/
parsed_options.cc 518 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/runtime/gc/
heap.cc 164 background_collector_type_(background_collector_type),
261 if (background_collector_type_ != foreground_collector_type_) {
263 background_collector_type_ = foreground_collector_type_;
357 background_collector_type_ == gc::kCollectorTypeHomogeneousSpaceCompact ||
365 IsMovingGc(background_collector_type_);
421 background_collector_type_ == kCollectorTypeSS ||
470 CHECK_EQ(foreground_collector_type_, background_collector_type_);
652 return foreground_collector_type_ == type || background_collector_type_ == type;
    [all...]
heap.h 709 DCHECK_EQ(foreground_collector_type_, background_collector_type_)
1064 CollectorType background_collector_type_; member in class:art::gc::Heap
    [all...]

Completed in 1409 milliseconds