Searched refs:collector_type (Results 1 - 7 of 7) sorted by relevance

/art/runtime/gc/
H A Dscoped_gc_critical_section.cc19 #include "gc/collector_type.h"
29 CollectorType collector_type)
31 Runtime::Current()->GetHeap()->StartGC(self, cause, collector_type);
27 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type) argument
H A Dscoped_gc_critical_section.h21 #include "collector_type.h"
35 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
H A Dcollector_type.h55 std::ostream& operator<<(std::ostream& os, const CollectorType& collector_type);
H A Dheap.h34 #include "gc/collector_type.h"
253 void TransitionCollector(CollectorType collector_type) REQUIRES(!*gc_complete_lock_);
256 void ChangeCollector(CollectorType collector_type)
799 void StartGC(Thread* self, GcCause cause, CollectorType collector_type)
824 static bool IsMovingGc(CollectorType collector_type) { argument
826 collector_type == kCollectorTypeSS ||
827 collector_type == kCollectorTypeGSS ||
828 collector_type == kCollectorTypeCC ||
829 collector_type == kCollectorTypeMC ||
830 collector_type
[all...]
H A Dheap.cc1424 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { argument
1428 collector_type_running_ = collector_type;
2094 void Heap::TransitionCollector(CollectorType collector_type) { argument
2095 if (collector_type == collector_type_) {
2099 << " -> " << static_cast<int>(collector_type);
2116 const bool copying_transition = IsMovingGc(collector_type_) != IsMovingGc(collector_type);
2121 if (collector_type == collector_type_) {
2127 collector_type_running_ = copying_transition ? kCollectorTypeSS : collector_type;
2142 switch (collector_type) {
2219 << static_cast<size_t>(collector_type);
2248 ChangeCollector(CollectorType collector_type) argument
[all...]
/art/cmdline/
H A Dcmdline_types.h32 #include "gc/collector_type.h"
487 gc::CollectorType collector_type = ParseCollectorType(gc_option); local
488 if (collector_type != gc::kCollectorTypeNone) {
489 xgc.collector_type_ = collector_type;
562 gc::CollectorType collector_type = ParseCollectorType(substring); local
563 if (collector_type != gc::kCollectorTypeNone) {
564 background_collector_type_ = collector_type;
/art/runtime/
H A DAndroid.mk355 gc/collector_type.h \

Completed in 71 milliseconds