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

  /art/runtime/gc/collector/
concurrent_copying-inl.h 35 DCHECK(heap_->collector_type_ == kCollectorTypeCC);
concurrent_copying.cc     [all...]
  /art/runtime/
parsed_options.cc 519 gc::CollectorType collector_type_ = (XGcOption{}).collector_type_; // NOLINT [whitespace/braces] [5] local
525 if (xgc != nullptr && xgc->collector_type_ != gc::kCollectorTypeNone) {
526 collector_type_ = xgc->collector_type_;
531 if (collector_type_ != gc::kCollectorTypeGSS) {
535 background_collector_type_ = collector_type_;
parsed_options_test.cc 128 EXPECT_EQ(gc::kCollectorTypeMC, xgc.collector_type_);
runtime.cc     [all...]
  /art/runtime/gc/
heap.cc 162 collector_type_(kCollectorTypeNone),
    [all...]
heap.h 702 return collector_type_;
706 if (IsGcConcurrent() && IsMovingGc(collector_type_)) {
708 DCHECK_EQ(collector_type_, foreground_collector_type_);
710 << "Assume no transition such that collector_type_ won't change";
1060 CollectorType collector_type_; member in class:art::gc::Heap
    [all...]
  /art/cmdline/
cmdline_parser_test.cc 315 option_all_true.collector_type_ = gc::CollectorType::kCollectorTypeCMS;
332 option_all_false.collector_type_ = gc::CollectorType::kCollectorTypeMS;
cmdline_types.h 465 gc::CollectorType collector_type_ = kUseReadBarrier ? member in struct:art::XGcOption
489 xgc.collector_type_ = collector_type;
536 // XGcOption::collector_type_ after parsing options. If you set this to

Completed in 1125 milliseconds