Searched refs:GcCause (Results 1 – 12 of 12) sorted by relevance
/art/runtime/gc/ |
D | gc_cause.h | 26 enum GcCause { enum 69 const char* PrettyCause(GcCause cause); 70 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause);
|
D | scoped_gc_critical_section.h | 38 const char* Enter(GcCause cause, CollectorType type) ACQUIRE(Roles::uninterruptible_); 53 ScopedGCCriticalSection(Thread* self, GcCause cause, CollectorType collector_type) 67 ScopedInterruptibleGCCriticalSection(Thread* self, GcCause cause, CollectorType type);
|
D | scoped_gc_critical_section.cc | 27 const char* GCCriticalSection::Enter(GcCause cause, CollectorType type) { in Enter() 51 GcCause cause, in ScopedGCCriticalSection() 63 GcCause cause, in ScopedInterruptibleGCCriticalSection()
|
D | gc_cause.cc | 29 const char* PrettyCause(GcCause cause) { in PrettyCause() 55 std::ostream& operator<<(std::ostream& os, const GcCause& gc_cause) { in operator <<()
|
D | heap.h | 381 void CollectGarbage(bool clear_soft_references, GcCause cause = kGcCauseExplicit) 386 void ConcurrentGC(Thread* self, GcCause cause, bool force_full) 474 collector::GcType WaitForGcToComplete(GcCause cause, Thread* self) REQUIRES(!*gc_complete_lock_); 832 void RequestConcurrentGC(Thread* self, GcCause cause, bool force_full) 937 GcCause gc_cause) 940 void LogGC(GcCause gc_cause, collector::GarbageCollector* collector); 941 void StartGC(Thread* self, GcCause cause, CollectorType collector_type) 1080 collector::GcType WaitForGcToCompleteLocked(GcCause cause, Thread* self) 1094 GcCause gc_cause, 1346 volatile GcCause last_gc_cause_ GUARDED_BY(gc_complete_lock_);
|
D | heap.cc | 1487 void Heap::StartGC(Thread* self, GcCause cause, CollectorType collector_type) { in StartGC() 2048 void Heap::CollectGarbage(bool clear_soft_references, GcCause cause) { in CollectGarbage() 2511 GcCause gc_cause) { in Compact() 2576 GcCause gc_cause, in CollectGarbageInternal() 2700 void Heap::LogGC(GcCause gc_cause, collector::GarbageCollector* collector) { in LogGC() 3419 collector::GcType Heap::WaitForGcToComplete(GcCause cause, Thread* self) { in WaitForGcToComplete() 3425 collector::GcType Heap::WaitForGcToCompleteLocked(GcCause cause, Thread* self) { in WaitForGcToCompleteLocked() 3428 GcCause last_gc_cause = kGcCauseNone; in WaitForGcToCompleteLocked() 3682 ConcurrentGCTask(uint64_t target_time, GcCause cause, bool force_full) in ConcurrentGCTask() 3691 const GcCause cause_; [all …]
|
/art/runtime/gc/collector/ |
D | iteration.h | 66 void Reset(GcCause gc_cause, bool clear_soft_references); 75 GcCause GetGcCause() const { in GetGcCause() 84 GcCause gc_cause_;
|
D | garbage_collector.h | 70 void Run(GcCause gc_cause, bool clear_soft_references) REQUIRES(!pause_histogram_lock_);
|
D | garbage_collector.cc | 50 void Iteration::Reset(GcCause gc_cause, bool clear_soft_references) { in Reset() 146 void GarbageCollector::Run(GcCause gc_cause, bool clear_soft_references) { in Run()
|
D | concurrent_copying.cc | 392 GcCause gc_cause = GetCurrentIteration()->GetGcCause(); in InitializePhase()
|
/art/openjdkjvmti/ |
D | deopt_manager.cc | 492 art::gc::GcCause::kGcCauseDebugger, in DeoptimizeThread()
|
D | ti_heap.cc | 1933 self, art::gc::GcCause::kGcCauseDebugger, art::gc::CollectorType::kCollectorTypeDebugger); in ChangeArraySize()
|