Lines Matching defs:GCInvoker
17 class GCInvoker::GCInvokerImpl final : public GarbageCollector {
40 std::make_unique<GCInvoker::GCInvokerImpl::GCTask>(collector, config);
77 GCInvoker::GCInvokerImpl::GCInvokerImpl(GarbageCollector* collector,
84 GCInvoker::GCInvokerImpl::~GCInvokerImpl() {
90 void GCInvoker::GCInvokerImpl::CollectGarbage(GarbageCollector::Config config) {
111 void GCInvoker::GCInvokerImpl::StartIncrementalGarbageCollection(
130 GCInvoker::GCInvoker(GarbageCollector* collector, cppgc::Platform* platform,
132 : impl_(std::make_unique<GCInvoker::GCInvokerImpl>(collector, platform,
135 GCInvoker::~GCInvoker() = default;
137 void GCInvoker::CollectGarbage(GarbageCollector::Config config) {
141 void GCInvoker::StartIncrementalGarbageCollection(
146 size_t GCInvoker::epoch() const { return impl_->epoch(); }
148 const EmbedderStackState* GCInvoker::override_stack_state() const {