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.h67 std::ostream& operator<<(std::ostream& os, const CollectorType& collector_type);
H A Dheap.h37 #include "gc/collector_type.h"
280 void TransitionCollector(CollectorType collector_type) REQUIRES(!*gc_complete_lock_);
283 void ChangeCollector(CollectorType collector_type)
848 void StartGC(Thread* self, GcCause cause, CollectorType collector_type)
877 static bool IsMovingGc(CollectorType collector_type) { argument
879 collector_type == kCollectorTypeSS ||
880 collector_type == kCollectorTypeGSS ||
881 collector_type == kCollectorTypeCC ||
882 collector_type == kCollectorTypeCCBackground ||
883 collector_type
[all...]
H A Dheap.cc1319 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { argument
1326 collector_type_running_ = collector_type;
1962 void Heap::TransitionCollector(CollectorType collector_type) { argument
1963 if (collector_type == collector_type_) {
1969 << " -> " << static_cast<int>(collector_type);
1989 const bool copying_transition = IsMovingGc(collector_type_) != IsMovingGc(collector_type);
1994 if (collector_type == collector_type_) {
2000 collector_type_running_ = copying_transition ? kCollectorTypeSS : collector_type;
2015 switch (collector_type) {
2092 << static_cast<size_t>(collector_type);
2121 ChangeCollector(CollectorType collector_type) argument
[all...]
/art/libdexfile/dex/
H A Ddex_file_layout.h48 std::ostream& operator<<(std::ostream& os, const LayoutType& collector_type);
63 std::ostream& operator<<(std::ostream& os, const MadviseState& collector_type);
121 std::ostream& operator<<(std::ostream& os, const DexLayoutSections::SectionType& collector_type);
/art/cmdline/
H A Dcmdline_types.h34 #include "gc/collector_type.h"
449 gc::CollectorType collector_type = ParseCollectorType(gc_option); local
450 if (collector_type != gc::kCollectorTypeNone) {
451 xgc.collector_type_ = collector_type;
522 gc::CollectorType collector_type = ParseCollectorType(substring); local
523 if (collector_type != gc::kCollectorTypeNone) {
524 background_collector_type_ = collector_type;

Completed in 1134 milliseconds