Home
last modified time | relevance | path

Searched refs:gc_type (Results 1 – 5 of 5) sorted by relevance

/art/runtime/gc/
Dheap.cc2699 collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, in CollectGarbageInternal() argument
2706 switch (gc_type) { in CollectGarbageInternal()
2760 DCHECK_LT(gc_type, collector::kGcTypeMax); in CollectGarbageInternal()
2761 DCHECK_NE(gc_type, collector::kGcTypeNone); in CollectGarbageInternal()
2785 active_cc_collector = (gc_type == collector::kGcTypeSticky) ? in CollectGarbageInternal()
2810 collector = FindCollectorByGcType(gc_type); in CollectGarbageInternal()
2817 << static_cast<size_t>(collector_type_) << " and gc_type=" << gc_type; in CollectGarbageInternal()
2827 FinishGC(self, gc_type); in CollectGarbageInternal()
2841 return gc_type; in CollectGarbageInternal()
2890 void Heap::FinishGC(Thread* self, collector::GcType gc_type) { in FinishGC() argument
[all …]
Dheap.h1012 void FinishGC(Thread* self, collector::GcType gc_type) REQUIRES(!*gc_complete_lock_);
1177 collector::GarbageCollector* FindCollectorByGcType(collector::GcType gc_type);
/art/runtime/gc/collector/
Dgarbage_collector.cc249 const GcType gc_type = GetGcType(); in SwapBitmaps() local
253 (gc_type == kGcTypeFull && in SwapBitmaps()
Dmark_compact.cc158 gc::CollectorType gc_type = gc::CollectorType::kCollectorTypeNone; in FetchCmdlineGcType() local
161 gc_type = gc::CollectorType::kCollectorTypeCMC; in FetchCmdlineGcType()
163 gc_type = gc::CollectorType::kCollectorTypeCC; in FetchCmdlineGcType()
166 return gc_type; in FetchCmdlineGcType()
264 gc::CollectorType gc_type = FetchCmdlineGcType(); in ShouldUseUserfaultfd() local
265 return gc_type == gc::CollectorType::kCollectorTypeCMC || in ShouldUseUserfaultfd()
266 (gc_type == gc::CollectorType::kCollectorTypeNone && in ShouldUseUserfaultfd()
/art/runtime/
DAndroid.bp611 "gc/collector/gc_type.h",