Searched refs:GcType (Results 1 – 10 of 10) sorted by relevance
/art/runtime/gc/collector/ |
D | gc_type.h | 28 enum GcType { enum 40 std::ostream& operator<<(std::ostream& os, const GcType& policy);
|
D | partial_mark_sweep.h | 29 GcType GetGcType() const override { in GetGcType()
|
D | sticky_mark_sweep.h | 29 GcType GetGcType() const override { in GetGcType()
|
D | garbage_collector.h | 67 virtual GcType GetGcType() const = 0;
|
D | semi_space.h | 75 GcType GetGcType() const override { in GetGcType()
|
D | mark_sweep.h | 75 GcType GetGcType() const override { in GetGcType()
|
D | garbage_collector.cc | 192 const GcType gc_type = GetGcType(); in SwapBitmaps()
|
D | concurrent_copying.h | 94 GcType GetGcType() const override { in GetGcType()
|
/art/runtime/gc/ |
D | heap.h | 461 collector::GcType WaitForGcToComplete(GcCause cause, Thread* self) REQUIRES(!*gc_complete_lock_); 915 void FinishGC(Thread* self, collector::GcType gc_type) REQUIRES(!*gc_complete_lock_); 1050 collector::GcType WaitForGcToCompleteLocked(GcCause cause, Thread* self) 1063 collector::GcType CollectGarbageInternal(collector::GcType gc_plan, 1083 collector::GarbageCollector* FindCollectorByGcType(collector::GcType gc_type); 1164 collector::GcType NonStickyGcType() const { in NonStickyGcType() 1311 volatile collector::GcType last_gc_type_ GUARDED_BY(gc_complete_lock_); 1312 collector::GcType next_gc_type_; 1427 std::vector<collector::GcType> gc_plan_;
|
D | heap.cc | 1736 collector::GcType last_gc = WaitForGcToComplete(kGcCauseForAlloc, self); in AllocateInternalWithGc() 1752 collector::GcType tried_type = next_gc_type_; in AllocateInternalWithGc() 1768 for (collector::GcType gc_type : gc_plan_) { in AllocateInternalWithGc() 2687 collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, in CollectGarbageInternal() 2853 void Heap::FinishGC(Thread* self, collector::GcType gc_type) { in FinishGC() 3538 collector::GcType Heap::WaitForGcToComplete(GcCause cause, Thread* self) { in WaitForGcToComplete() 3544 collector::GcType Heap::WaitForGcToCompleteLocked(GcCause cause, Thread* self) { in WaitForGcToCompleteLocked() 3546 collector::GcType last_gc_type = collector::kGcTypeNone; in WaitForGcToCompleteLocked() 3617 collector::GarbageCollector* Heap::FindCollectorByGcType(collector::GcType gc_type) { in FindCollectorByGcType() 3643 collector::GcType gc_type = collector_ran->GetGcType(); in GrowForUtilization() [all …]
|