Home
last modified time | relevance | path

Searched refs:GcCause (Results 1 – 8 of 8) sorted by relevance

/art/runtime/gc/
Dgc_cause.h26 enum GcCause { enum
52 const char* PrettyCause(GcCause cause);
53 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause);
Dgc_cause.cc26 const char* PrettyCause(GcCause cause) { in PrettyCause()
45 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { in operator <<()
Dscoped_gc_critical_section.h35 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type)
Dscoped_gc_critical_section.cc28 GcCause cause, in ScopedGCCriticalSection()
Dheap.h375 collector::GcType WaitForGcToComplete(GcCause cause, Thread* self) REQUIRES(!*gc_complete_lock_);
795 GcCause gc_cause)
798 void LogGC(GcCause gc_cause, collector::GarbageCollector* collector);
799 void StartGC(Thread* self, GcCause cause, CollectorType collector_type)
903 collector::GcType WaitForGcToCompleteLocked(GcCause cause, Thread* self)
917 GcCause gc_cause,
Dheap.cc1424 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC()
2589 GcCause gc_cause) { in Compact()
2608 GcCause gc_cause, in CollectGarbageInternal()
2740 void Heap::LogGC(GcCause gc_cause, collector::GarbageCollector* collector) { in LogGC()
3450 collector::GcType Heap::WaitForGcToComplete(GcCause cause, Thread* self) { in WaitForGcToComplete()
3456 collector::GcType Heap::WaitForGcToCompleteLocked(GcCause cause, Thread* self) { in WaitForGcToCompleteLocked()
/art/runtime/gc/collector/
Dgarbage_collector.h94 void Reset(GcCause gc_cause, bool clear_soft_references);
103 GcCause GetGcCause() const { in GetGcCause()
112 GcCause gc_cause_;
145 void Run(GcCause gc_cause, bool clear_soft_references) REQUIRES(!pause_histogram_lock_);
Dgarbage_collector.cc43 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) { in Reset()
81 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { in Run()