Home
last modified time | relevance | path

Searched refs:microtask_queue_ (Results 1 – 6 of 6) sorted by relevance

/third_party/node/deps/v8/src/snapshot/
Dcontext-serializer.cc30 microtask_queue_(native_context.microtask_queue()), in SanitizeNativeContextScope()
36 DCHECK_EQ(0, microtask_queue_->size()); in SanitizeNativeContextScope()
37 DCHECK(!microtask_queue_->HasMicrotasksSuppressions()); in SanitizeNativeContextScope()
38 DCHECK_EQ(0, microtask_queue_->GetMicrotasksScopeDepth()); in SanitizeNativeContextScope()
39 DCHECK(microtask_queue_->DebugMicrotasksScopeDepthIsZero()); in SanitizeNativeContextScope()
55 native_context_.set_microtask_queue(isolate_, microtask_queue_); in ~SanitizeNativeContextScope()
61 MicrotaskQueue* const microtask_queue_; member in v8::internal::__anon1c8ecc120111::SanitizeNativeContextScope
/third_party/node/deps/v8/include/
Dv8-microtask-queue.h146 internal::MicrotaskQueue* const microtask_queue_; variable
Dv8-isolate.h380 internal::MicrotaskQueue* const microtask_queue_; variable
/third_party/node/src/
Dnode_contextify.h33 std::shared_ptr<v8::MicrotaskQueue> microtask_queue_;
Dnode_contextify.cc1350 microtask_queue_( in MicrotaskQueueWrap()
1357 return microtask_queue_; in microtask_queue()
/third_party/node/deps/v8/src/api/
Dapi.cc8846 microtask_queue_(microtask_queue in SuppressMicrotaskExecutionScope()
8850 microtask_queue_->IncrementMicrotasksSuppressions(); in SuppressMicrotaskExecutionScope()
8854 microtask_queue_->DecrementMicrotasksSuppressions(); in ~SuppressMicrotaskExecutionScope()
9584 microtask_queue_(microtask_queue in MicrotasksScope()
9588 if (run_) microtask_queue_->IncrementMicrotasksScopeDepth(); in MicrotasksScope()
9590 if (!run_) microtask_queue_->IncrementDebugMicrotasksScopeDepth(); in MicrotasksScope()
9596 microtask_queue_->DecrementMicrotasksScopeDepth(); in ~MicrotasksScope()
9597 if (MicrotasksPolicy::kScoped == microtask_queue_->microtasks_policy() && in ~MicrotasksScope()
9602 microtask_queue_->PerformCheckpoint(reinterpret_cast<Isolate*>(isolate_)); in ~MicrotasksScope()
9606 if (!run_) microtask_queue_->DecrementDebugMicrotasksScopeDepth(); in ~MicrotasksScope()