Lines Matching refs:env_
51 : env_(env),
93 env_->PopAsyncCallbackScope();
104 if (env_->is_stopping()) {
106 env_->async_hooks()->clear_async_id_stack();
111 if (env_->is_stopping()) return;
113 Isolate* isolate = env_->isolate();
117 AsyncWrap::EmitAfter(env_, async_context_.async_id);
121 env_->async_hooks()->pop_async_context(async_context_.async_id);
125 if (env_->async_callback_scope_depth() > 1 || skip_task_queues_) {
129 TickInfo* tick_info = env_->tick_info();
131 if (!env_->can_call_into_js()) return;
133 auto weakref_cleanup = OnScopeLeave([&]() { env_->RunWeakRefCleanup(); });
135 Local<Context> context = env_->context();
144 if (env_->async_hooks()->fields()[AsyncHooks::kTotals]) {
145 CHECK_EQ(env_->execution_async_id(), 0);
146 CHECK_EQ(env_->trigger_async_id(), 0);
154 Local<Object> process = env_->process_object();
156 if (!env_->can_call_into_js()) return;
158 Local<Function> tick_callback = env_->tick_callback_function();