Searched refs:can_call_into_js (Results 1 – 16 of 16) sorted by relevance
60 if (!env->can_call_into_js()) { in InternalCallbackScope()94 if (!env_->can_call_into_js()) return; in Close()118 if (!env_->can_call_into_js()) return; in Close()142 if (!env_->can_call_into_js()) return; in Close()238 if (!env->can_call_into_js()) return Local<Value>(); in MakeCallback()
15 bool can_call_into_js() const override;
232 if (!env_->owns_process_state() || !env_->can_call_into_js()) { in UpdateTraceCategoryState()746 if (!try_catch.HasTerminated() && can_call_into_js()) in RunAndClearNativeImmediates()829 if (!env->can_call_into_js()) in RunTimers()848 } while (ret.IsEmpty() && env->can_call_into_js()); in RunTimers()896 if (env->immediate_info()->count() == 0 || !env->can_call_into_js()) in CheckImmediate()906 } while (env->immediate_info()->has_outstanding() && env->can_call_into_js()); in CheckImmediate()
40 if (!env->can_call_into_js()) return Just(false); in ProcessEmitWarningGeneric()
79 virtual bool can_call_into_js() const { return true; } in can_call_into_js() function215 (env)->last_exception.IsEmpty() && (env)->can_call_into_js(), \
113 if (!env->can_call_into_js()) return; in DestroyAsyncIdsCallback()132 if (async_hooks->fields()[type] == 0 || !env->can_call_into_js()) in Emit()569 !env->can_call_into_js()) { in EmitDestroy()
865 inline bool Environment::can_call_into_js() const { in can_call_into_js() function869 inline void Environment::set_can_call_into_js(bool can_call_into_js) { in set_can_call_into_js() argument870 can_call_into_js_ = can_call_into_js; in set_can_call_into_js()
285 if (!env->can_call_into_js()) in ReportFatalException()953 if (env->can_call_into_js()) { in TriggerUncaughtException()
712 if (!env()->can_call_into_js()) return MaybeLocal<Value>(); in ReceiveMessage()766 if (!env()->can_call_into_js()) { in OnMessage()904 while (env->can_call_into_js()) { in ReadIterable()
25 bool node_napi_env__::can_call_into_js() const { in can_call_into_js() function in node_napi_env__26 return node_env()->can_call_into_js(); in can_call_into_js()
1039 inline bool can_call_into_js() const;1040 inline void set_can_call_into_js(bool can_call_into_js);
850 if (!parent_env_->can_call_into_js()) return; in ToggleAsyncHook()
939 if (!env->can_call_into_js()) in EvalMachine()
723 `env->can_call_into_js()` flag and do not proceed if it is set to `false`.
1423 …s://github.com/nodejs/node/commit/94357db815)] - **src**: add more `can_call_into_js()` guards (An…
3297 …s/node/commit/afc811cc1c)] - **src**: break out of timers loop if `!can_call_into_js()` (Anna Henn…