Searched refs:gc_cause (Results 1 – 9 of 9) sorted by relevance
/art/runtime/gc/ |
D | gc_cause.cc | 55 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { in operator <<() argument 56 os << PrettyCause(gc_cause); in operator <<()
|
D | gc_cause.h | 70 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause);
|
D | heap.cc | 2508 GcCause gc_cause) { in Compact() argument 2515 semi_space_collector_->Run(gc_cause, false); in Compact() 2581 GcCause gc_cause, in CollectGarbageInternal() argument 2615 WaitForGcToCompleteLocked(gc_cause, self); in CollectGarbageInternal() 2633 last_gc_cause_ = gc_cause; in CollectGarbageInternal() 2635 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) { in CollectGarbageInternal() 2695 collector->Run(gc_cause, clear_soft_references || runtime->IsZygote()); in CollectGarbageInternal() 2703 LogGC(gc_cause, collector); in CollectGarbageInternal() 2721 void Heap::LogGC(GcCause gc_cause, collector::GarbageCollector* collector) { in LogGC() argument 2726 bool log_gc = kLogAllGCs || (gc_cause == kGcCauseExplicit && always_log_explicit_gcs_); in LogGC() [all …]
|
D | heap.h | 972 GcCause gc_cause) 975 void LogGC(GcCause gc_cause, collector::GarbageCollector* collector); 1134 GcCause gc_cause,
|
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 50 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) { in Reset() argument 56 gc_cause_ = gc_cause; in Reset() 155 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { in Run() argument 156 ScopedTrace trace(android::base::StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName())); in Run() 163 current_iteration->Reset(gc_cause, clear_soft_references); in Run()
|
D | iteration.h | 72 void Reset(GcCause gc_cause, bool clear_soft_references);
|
D | garbage_collector.h | 71 void Run(GcCause gc_cause, bool clear_soft_references) REQUIRES(!pause_histogram_lock_);
|
D | concurrent_copying.cc | 414 GcCause gc_cause = GetCurrentIteration()->GetGcCause(); in InitializePhase() local 418 if (gc_cause == kGcCauseExplicit || in InitializePhase() 419 gc_cause == kGcCauseCollectorTransition || in InitializePhase()
|
/art/runtime/ |
D | Android.bp | 117 "gc/gc_cause.cc",
|