Searched defs:gc_cause (Results 1 - 3 of 3) sorted by relevance

/art/runtime/gc/
H A Dgc_cause.cc17 #include "gc_cause.h"
42 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { argument
43 os << PrettyCause(gc_cause);
H A Dheap.cc2049 GcCause gc_cause) {
2056 semi_space_collector_->Run(gc_cause, false);
2065 collector::GcType Heap::CollectGarbageInternal(collector::GcType gc_type, GcCause gc_cause, argument
2093 WaitForGcToCompleteLocked(gc_cause, self);
2103 if (gc_cause == kGcCauseForAlloc && runtime->HasStatsEnabled()) {
2159 collector->Run(gc_cause, clear_soft_references || runtime->IsZygote());
2171 bool log_gc = gc_cause == kGcCauseExplicit;
2175 (gc_cause == kGcCauseForAlloc && duration > long_pause_log_threshold_);
2189 LOG(INFO) << gc_cause << " " << collector->GetName()
2047 Compact(space::ContinuousMemMapAllocSpace* target_space, space::ContinuousMemMapAllocSpace* source_space, GcCause gc_cause) argument
/art/runtime/gc/collector/
H A Dgarbage_collector.cc39 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) { argument
44 gc_cause_ = gc_cause;
74 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { argument
75 ATRACE_BEGIN(StringPrintf("%s %s GC", PrettyCause(gc_cause), GetName()).c_str());
79 current_iteration->Reset(gc_cause, clear_soft_references);

Completed in 966 milliseconds