Lines Matching refs:collector

87 namespace collector {
474 collector::GcType WaitForGcToComplete(GcCause cause, Thread* self) REQUIRES(!*gc_complete_lock_);
494 const collector::Iteration* GetCurrentGcIteration() const { in GetCurrentGcIteration()
497 collector::Iteration* GetCurrentGcIteration() { in GetCurrentGcIteration()
800 collector::ConcurrentCopying* ConcurrentCopyingCollector() { in ConcurrentCopyingCollector()
935 collector::GarbageCollector* Compact(space::ContinuousMemMapAllocSpace* target_space,
940 void LogGC(GcCause gc_cause, collector::GarbageCollector* collector);
943 void FinishGC(Thread* self, collector::GcType gc_type) REQUIRES(!*gc_complete_lock_);
1080 collector::GcType WaitForGcToCompleteLocked(GcCause cause, Thread* self)
1093 collector::GcType CollectGarbageInternal(collector::GcType gc_plan,
1099 void PreGcVerification(collector::GarbageCollector* gc)
1101 void PreGcVerificationPaused(collector::GarbageCollector* gc)
1103 void PrePauseRosAllocVerification(collector::GarbageCollector* gc)
1105 void PreSweepingGcVerification(collector::GarbageCollector* gc)
1107 void PostGcVerification(collector::GarbageCollector* gc)
1109 void PostGcVerificationPaused(collector::GarbageCollector* gc)
1113 collector::GarbageCollector* FindCollectorByGcType(collector::GcType gc_type);
1133 void GrowForUtilization(collector::GarbageCollector* collector_ran,
1196 collector::GcType NonStickyGcType() const { in NonStickyGcType()
1197 return HasZygoteSpace() ? collector::kGcTypePartial : collector::kGcTypeFull; in NonStickyGcType()
1352 volatile collector::GcType last_gc_type_ GUARDED_BY(gc_complete_lock_);
1353 collector::GcType next_gc_type_;
1410 collector::Iteration current_gc_iteration_;
1474 std::vector<collector::GcType> gc_plan_;
1513 std::vector<collector::GarbageCollector*> garbage_collectors_;
1514 collector::SemiSpace* semi_space_collector_;
1515 collector::ConcurrentCopying* active_concurrent_copying_collector_;
1516 collector::ConcurrentCopying* young_concurrent_copying_collector_;
1517 collector::ConcurrentCopying* concurrent_copying_collector_;
1620 friend class collector::GarbageCollector;
1621 friend class collector::ConcurrentCopying;
1622 friend class collector::MarkSweep;
1623 friend class collector::SemiSpace;