Home
last modified time | relevance | path

Searched refs:is_stopping (Results 1 – 10 of 10) sorted by relevance

/third_party/node/src/
Dnode_watchdog.cc226 bool is_stopping; in RunSigintWatchdog() local
230 is_stopping = InformWatchdogsAboutSignal(); in RunSigintWatchdog()
231 } while (!is_stopping); in RunSigintWatchdog()
263 bool is_stopping = false; in InformWatchdogsAboutSignal() local
265 is_stopping = instance.stopping_; in InformWatchdogsAboutSignal()
270 if (instance.watchdogs_.empty() && !is_stopping) { in InformWatchdogsAboutSignal()
282 return is_stopping; in InformWatchdogsAboutSignal()
Dnode_main_instance.cc137 if (more && !env->is_stopping()) continue; in Run()
147 } while (more == true && !env->is_stopping()); in Run()
153 if (!env->is_stopping()) env->VerifyNoStrongBaseObjects(); in Run()
Denv-inl.h866 return can_call_into_js_ && !is_stopping(); in can_call_into_js()
964 inline bool Environment::is_stopping() const { in is_stopping() function
Dmodule_wrap.cc386 if (!env->is_main_thread() && env->is_stopping()) in Evaluate()
Dnode_worker.cc92 return env_->is_stopping(); in is_stopped()
Denv.cc468 CHECK(is_stopping()); in ~Environment()
Dnode_contextify.cc986 if (!env->is_main_thread() && env->is_stopping()) in EvalMachine()
Denv.h1071 inline bool is_stopping() const;
/third_party/node/src/api/
Dcallback.cc96 if (env_->is_stopping()) { in Close()
Denvironment.cc44 (env->is_main_thread() || !env->is_stopping()) && in ShouldAbortOnUncaughtException()