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 | 72 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause);
|
D | heap.cc | 2684 GcCause gc_cause) { in Compact() argument 2691 semi_space_collector_->Run(gc_cause, false); in Compact() 2757 GcCause gc_cause, in CollectGarbageInternal() argument 2799 WaitForGcToCompleteLocked(gc_cause, self); in CollectGarbageInternal() 2817 last_gc_cause_ = gc_cause; in CollectGarbageInternal() 2819 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) { in CollectGarbageInternal() 2885 collector->Run(gc_cause, clear_soft_references || runtime->IsZygote()); in CollectGarbageInternal() 2893 LogGC(gc_cause, collector); in CollectGarbageInternal() 2913 void Heap::LogGC(GcCause gc_cause, collector::GarbageCollector* collector) { in LogGC() argument 2918 bool log_gc = kLogAllGCs || (gc_cause == kGcCauseExplicit && always_log_explicit_gcs_); in LogGC() [all …]
|
D | heap.h | 1039 GcCause gc_cause) 1042 void LogGC(GcCause gc_cause, collector::GarbageCollector* collector); 1191 GcCause gc_cause,
|
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 94 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) { in Reset() argument 100 gc_cause_ = gc_cause; in Reset() 193 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { in Run() argument 194 ScopedTrace trace(android::base::StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName())); in Run() 201 current_iteration->Reset(gc_cause, clear_soft_references); in Run()
|
D | iteration.h | 73 void Reset(GcCause gc_cause, bool clear_soft_references);
|
D | garbage_collector.h | 72 void Run(GcCause gc_cause, bool clear_soft_references) REQUIRES(!pause_histogram_lock_);
|
D | concurrent_copying.cc | 434 GcCause gc_cause = GetCurrentIteration()->GetGcCause(); in InitializePhase() local 438 if (gc_cause == kGcCauseExplicit || in InitializePhase() 439 gc_cause == kGcCauseCollectorTransition || in InitializePhase()
|
/art/runtime/ |
D | Android.bp | 278 "gc/gc_cause.cc",
|