Searched defs:collector_type (Results 1 - 3 of 3) sorted by relevance

/art/cmdline/
H A Dcmdline_types.h31 #include "gc/collector_type.h"
486 gc::CollectorType collector_type = ParseCollectorType(gc_option); local
487 if (collector_type != gc::kCollectorTypeNone) {
488 xgc.collector_type_ = collector_type;
561 gc::CollectorType collector_type = ParseCollectorType(substring); local
562 if (collector_type != gc::kCollectorTypeNone) {
563 background_collector_type_ = collector_type;
/art/runtime/gc/
H A Dheap.h36 #include "gc/collector_type.h"
243 void TransitionCollector(CollectorType collector_type);
246 void ChangeCollector(CollectorType collector_type)
724 static bool IsMovingGc(CollectorType collector_type) { argument
725 return collector_type == kCollectorTypeSS || collector_type == kCollectorTypeGSS ||
726 collector_type == kCollectorTypeCC || collector_type == kCollectorTypeMC ||
727 collector_type == kCollectorTypeHomogeneousSpaceCompact;
H A Dheap.cc1873 void Heap::TransitionCollector(CollectorType collector_type) { argument
1874 if (collector_type == collector_type_) {
1878 << " -> " << static_cast<int>(collector_type);
1896 const bool copying_transition = IsMovingGc(collector_type_) != IsMovingGc(collector_type);
1901 if (collector_type == collector_type_) {
1907 collector_type_running_ = copying_transition ? kCollectorTypeSS : collector_type;
1921 switch (collector_type) {
1992 << static_cast<size_t>(collector_type);
1996 ChangeCollector(collector_type);
2017 void Heap::ChangeCollector(CollectorType collector_type) { argument
[all...]

Completed in 75 milliseconds