Lines Matching refs:finalizer
157 // Call finalizer immediately.
163 // Invoke finalizer from V8 garbage collector.
164 void InvokeFinalizerFromGC(v8impl::RefTracker* finalizer);
166 // Enqueue the finalizer to the JSVM_Env's own queue of the second pass
170 virtual void EnqueueFinalizer(v8impl::RefTracker* finalizer) {
171 pending_finalizers.emplace(finalizer);
174 // Remove the finalizer from the scheduled second pass weak callback queue.
175 // The finalizer can be deleted after this call.
176 virtual void DequeueFinalizer(v8impl::RefTracker* finalizer) {
177 pending_finalizers.erase(finalizer);
189 "Use `node_api_post_finalizer` from inside of the finalizer to work "