Home
last modified time | relevance | path

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

/art/runtime/gc/
Dheap.cc2756 collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, in CollectGarbageInternal() argument
2763 switch (gc_type) { in CollectGarbageInternal()
2825 DCHECK_LT(gc_type, collector::kGcTypeMax); in CollectGarbageInternal()
2826 DCHECK_NE(gc_type, collector::kGcTypeNone); in CollectGarbageInternal()
2850 active_cc_collector = (gc_type == collector::kGcTypeSticky) ? in CollectGarbageInternal()
2877 collector = FindCollectorByGcType(gc_type); in CollectGarbageInternal()
2884 << " and gc_type=" << gc_type; in CollectGarbageInternal()
2894 FinishGC(self, gc_type); in CollectGarbageInternal()
2910 return gc_type; in CollectGarbageInternal()
2959 void Heap::FinishGC(Thread* self, collector::GcType gc_type) { in FinishGC() argument
[all …]
Dheap.h1047 void FinishGC(Thread* self, collector::GcType gc_type) REQUIRES(!*gc_complete_lock_);
1211 collector::GarbageCollector* FindCollectorByGcType(collector::GcType gc_type);
/art/runtime/gc/collector/
Dgarbage_collector.cc286 const GcType gc_type = GetGcType(); in SwapBitmaps() local
290 (gc_type == kGcTypeFull && in SwapBitmaps()
Dmark_compact.cc187 gc::CollectorType gc_type = gc::CollectorType::kCollectorTypeNone; in FetchCmdlineGcType() local
191 gc_type = gc::CollectorType::kCollectorTypeCMC; in FetchCmdlineGcType()
193 gc_type = gc::CollectorType::kCollectorTypeCC; in FetchCmdlineGcType()
196 return gc_type; in FetchCmdlineGcType()
310 gc::CollectorType gc_type = FetchCmdlineGcType(); in ShouldUseUserfaultfd() local
311 return gc_type == gc::CollectorType::kCollectorTypeCMC || in ShouldUseUserfaultfd()
312 (gc_type == gc::CollectorType::kCollectorTypeNone && in ShouldUseUserfaultfd()
/art/runtime/
DAndroid.bp766 "gc/collector/gc_type.h",