Home
last modified time | relevance | path

Searched refs:TryCatchScope (Results 1 – 14 of 14) sorted by relevance

/third_party/node/src/
Dnode_errors.h196 class TryCatchScope : public v8::TryCatch {
200 explicit TryCatchScope(Environment* env, CatchMode mode = CatchMode::kNormal)
202 ~TryCatchScope();
208 TryCatchScope(TryCatchScope&) = delete;
209 TryCatchScope(TryCatchScope&&) = delete;
210 TryCatchScope operator=(TryCatchScope&) = delete;
211 TryCatchScope operator=(TryCatchScope&&) = delete;
233 const errors::TryCatchScope& try_catch);
Djs_stream.cc12 using errors::TryCatchScope;
46 TryCatchScope try_catch(env()); in IsClosing()
60 TryCatchScope try_catch(env()); in ReadStart()
75 TryCatchScope try_catch(env()); in ReadStop()
95 TryCatchScope try_catch(env()); in DoShutdown()
129 TryCatchScope try_catch(env()); in DoWrite()
Dasync_wrap.cc55 using TryCatchScope = node::errors::TryCatchScope; typedef
108 TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal); in DestroyAsyncIdsCallback()
137 TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal); in Emit()
674 TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal); in EmitAsyncInit()
713 TryCatchScope ignore_exceptions(env); in GetOwner()
Djs_udp_wrap.cc10 using errors::TryCatchScope;
61 TryCatchScope try_catch(env()); in RecvStart()
75 TryCatchScope try_catch(env()); in RecvStop()
91 TryCatchScope try_catch(env()); in Send()
Dnode_errors.cc14 using errors::TryCatchScope;
448 TryCatchScope::~TryCatchScope() { in ~TryCatchScope()
876 const errors::TryCatchScope& try_catch) { in DecorateErrorStack()
886 TryCatchScope try_catch_scope(env); // Ignore exceptions below. in DecorateErrorStack()
956 errors::TryCatchScope try_catch(env, in TriggerUncaughtException()
957 errors::TryCatchScope::CatchMode::kFatal); in TriggerUncaughtException()
Dnode_task_queue.cc13 using errors::TryCatchScope;
82 TryCatchScope try_catch(env); in PromiseRejectCallback()
Dinspector_profiler.cc18 using errors::TryCatchScope;
Dmodule_wrap.cc20 using errors::TryCatchScope;
153 TryCatchScope try_catch(env); in New()
315 TryCatchScope try_catch(env); in Instantiate()
354 TryCatchScope try_catch(env); in Evaluate()
626 TryCatchScope try_catch(env); in HostInitializeImportMetaObjectCallback()
655 TryCatchScope try_catch(env); in SyntheticModuleEvaluationStepsCallback()
Dnode_contextify.cc36 using errors::TryCatchScope;
300 TryCatchScope try_catch(env); in MakeContext()
767 TryCatchScope try_catch(env); in New()
947 TryCatchScope try_catch(env); in EvalMachine()
1135 TryCatchScope try_catch(env); in CompileFunction()
Denv.cc31 using errors::TryCatchScope;
250 TryCatchScope try_catch(env_); in UpdateTraceCategoryState()
733 TryCatchScope try_catch(this); in RunAndClearNativeImmediates()
845 TryCatchScope try_catch(env); in RunTimers()
Dnode_messaging.cc13 using node::errors::TryCatchScope;
757 TryCatchScope try_catch(env()); in OnMessage()
1119 errors::TryCatchScope ignore_exceptions(env()); in GetTransferMode()
Dnode_url.cc14 using errors::TryCatchScope;
1915 TryCatchScope try_catch(env, TryCatchScope::CatchMode::kFatal); in ToObject()
DREADME.md653 `node::errors::TryCatchScope` in Node.js. The latter has the additional feature
/third_party/node/src/api/
Denvironment.cc15 using errors::TryCatchScope;
70 TryCatchScope try_catch(env); in PrepareStackTraceCallback()