Home
last modified time | relevance | path

Searched refs:collector_type (Results 1 – 8 of 8) sorted by relevance

/art/runtime/gc/
Dscoped_gc_critical_section.cc29 CollectorType collector_type) in ScopedGCCriticalSection() argument
31 Runtime::Current()->GetHeap()->StartGC(self, cause, collector_type); in ScopedGCCriticalSection()
Dscoped_gc_critical_section.h35 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
Dcollector_type.h67 std::ostream& operator<<(std::ostream& os, const CollectorType& collector_type);
Dheap.h280 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) { in IsMovingGc() argument
879 collector_type == kCollectorTypeSS || in IsMovingGc()
880 collector_type == kCollectorTypeGSS || in IsMovingGc()
881 collector_type == kCollectorTypeCC || in IsMovingGc()
882 collector_type == kCollectorTypeCCBackground || in IsMovingGc()
883 collector_type == kCollectorTypeMC || in IsMovingGc()
884 collector_type == kCollectorTypeHomogeneousSpaceCompact; in IsMovingGc()
Dheap.cc1319 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC() argument
1326 collector_type_running_ = collector_type; in StartGC()
1962 void Heap::TransitionCollector(CollectorType collector_type) { in TransitionCollector() argument
1963 if (collector_type == collector_type_) { in TransitionCollector()
1969 << " -> " << static_cast<int>(collector_type); in TransitionCollector()
1989 const bool copying_transition = IsMovingGc(collector_type_) != IsMovingGc(collector_type); in TransitionCollector()
1994 if (collector_type == collector_type_) { in TransitionCollector()
2000 collector_type_running_ = copying_transition ? kCollectorTypeSS : collector_type; in TransitionCollector()
2015 switch (collector_type) { in TransitionCollector()
2092 << static_cast<size_t>(collector_type); in TransitionCollector()
[all …]
/art/libdexfile/dex/
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/
Dcmdline_types.h449 gc::CollectorType collector_type = ParseCollectorType(gc_option);
450 if (collector_type != gc::kCollectorTypeNone) {
451 xgc.collector_type_ = collector_type;
522 gc::CollectorType collector_type = ParseCollectorType(substring);
523 if (collector_type != gc::kCollectorTypeNone) {
524 background_collector_type_ = collector_type;
/art/runtime/
DAndroid.bp436 "gc/collector_type.h",