Searched refs:gc_cause (Results 1 – 7 of 7) sorted by relevance
/art/runtime/gc/ |
D | gc_cause.cc | 42 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { in operator <<() argument 43 os << PrettyCause(gc_cause); in operator <<()
|
D | gc_cause.h | 47 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause);
|
D | heap.cc | 2352 GcCause gc_cause) { in Compact() argument 2359 semi_space_collector_->Run(gc_cause, false); in Compact() 2370 collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause, in CollectGarbageInternal() argument 2400 WaitForGcToCompleteLocked(gc_cause, self); in CollectGarbageInternal() 2409 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) { in CollectGarbageInternal() 2468 collector->Run(gc_cause, clear_soft_references || runtime->IsZygote()); in CollectGarbageInternal() 2476 LogGC(gc_cause, collector); in CollectGarbageInternal() 2483 void Heap::LogGC(GcCause gc_cause, collector::GarbageCollector* collector) { in LogGC() argument 2488 bool log_gc = gc_cause == kGcCauseExplicit; in LogGC() 2492 (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_); in LogGC() [all …]
|
D | heap.h | 697 GcCause gc_cause) 700 void LogGC(GcCause gc_cause, collector::GarbageCollector* collector); 799 collector::GcType CollectGarbageInternal(collector::GcType gc_plan, GcCause gc_cause,
|
/art/runtime/gc/collector/ |
D | garbage_collector.cc | 45 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) { in Reset() argument 50 gc_cause_ = gc_cause; in Reset() 83 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { in Run() argument 84 ATRACE_BEGIN(StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName()).c_str()); in Run() 88 current_iteration->Reset(gc_cause, clear_soft_references); in Run()
|
D | garbage_collector.h | 85 void Reset(GcCause gc_cause, bool clear_soft_references); 136 void Run(GcCause gc_cause, bool clear_soft_references);
|
/art/runtime/ |
D | Android.mk | 64 gc/gc_cause.cc \
|