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

  /art/runtime/
parsed_options.cc 564 gc::CollectorType background_collector_type_; local
568 background_collector_type_ = args.GetOrDefault(M::BackgroundGc);
576 if (background_collector_type_ == gc::kCollectorTypeNone) {
578 background_collector_type_ = low_memory_mode_ ?
581 background_collector_type_ = collector_type_;
585 args.Set(M::BackgroundGc, BackgroundGcOption { background_collector_type_ });
    [all...]
  /art/cmdline/
cmdline_types.h 499 // If background_collector_type_ is kCollectorTypeNone, it defaults to the
503 gc::CollectorType background_collector_type_; member in struct:art::BackgroundGcOption
506 : background_collector_type_(background_collector_type) {}
508 : background_collector_type_(gc::kCollectorTypeNone) {
511 operator gc::CollectorType() const { return background_collector_type_; }
520 background_collector_type_ = gc::kCollectorTypeHomogeneousSpaceCompact;
524 background_collector_type_ = collector_type;
  /art/runtime/gc/
heap.h 1140 CollectorType background_collector_type_; member in class:art::gc::Heap
    [all...]

Completed in 87 milliseconds