Lines Matching refs:GCStats
68 [[maybe_unused]] GCStats::Scope sp(scope_id, gc_stats)
70 class GCStats {
74 explicit GCStats(const Heap *heap) : heap_(heap) {}
75 GCStats(const Heap *heap, size_t longPuaseTime) : heap_(heap),
77 virtual ~GCStats() = default;
163 Scope(ScopeId id, GCStats* stats) : id_(id), stats_(stats)
177 GCStats* stats_;
315 NO_COPY_SEMANTIC(GCStats);
316 NO_MOVE_SEMANTIC(GCStats);
319 class SharedGCStats : public GCStats {
322 : GCStats(nullptr), sHeap_(sHeap), enableGCTracer_(enableGCTracer)