Home
last modified time | relevance | path

Searched refs:setUncaughtExceptionCaptureCallback (Results 1 – 18 of 18) sorted by relevance

/third_party/node/test/parallel/
Dtest-process-exception-capture-errors.js6 () => process.setUncaughtExceptionCaptureCallback(42),
15 process.setUncaughtExceptionCaptureCallback(common.mustNotCall());
18 () => process.setUncaughtExceptionCaptureCallback(common.mustNotCall()),
Dtest-domain-load-after-set-uncaught-exception-capture.js5 process.setUncaughtExceptionCaptureCallback(common.mustNotCall());
16 process.setUncaughtExceptionCaptureCallback(null);
Dtest-process-exception-capture-should-abort-on-uncaught.js9 process.setUncaughtExceptionCaptureCallback(common.mustCall((err) => {
Dtest-process-exception-capture.js9 process.setUncaughtExceptionCaptureCallback(common.mustCall((err) => {
Dtest-process-exception-capture-should-abort-on-uncaught-setflagsfromstring.js10 process.setUncaughtExceptionCaptureCallback(common.mustCall((err) => {
Dtest-domain-set-uncaught-exception-capture-after-load.js10 () => process.setUncaughtExceptionCaptureCallback(common.mustNotCall()),
Dtest-process-uncaught-exception-monitor.js62 process.setUncaughtExceptionCaptureCallback(common.mustCall(
/third_party/node/lib/
Ddomain.js123 const { setUncaughtExceptionCaptureCallback } = process;
124 process.setUncaughtExceptionCaptureCallback = function(fn) { function
168 setUncaughtExceptionCaptureCallback(null);
170 setUncaughtExceptionCaptureCallback(null);
171 setUncaughtExceptionCaptureCallback((er) => {
267 setUncaughtExceptionCaptureCallback(null);
/third_party/node/lib/internal/bootstrap/
Dnode.js211 setUncaughtExceptionCaptureCallback,
222 process.setUncaughtExceptionCaptureCallback =
223 setUncaughtExceptionCaptureCallback;
/third_party/node/lib/internal/process/
Dexecution.js104 function setUncaughtExceptionCaptureCallback(fn) { function
219 setUncaughtExceptionCaptureCallback, property
/third_party/node/test/report/
Dtest-report-uncaught-exception-override.js14 process.setUncaughtExceptionCaptureCallback(common.mustCall());
/third_party/node/test/async-hooks/
Dtest-async-local-storage-errors.js10 process.setUncaughtExceptionCaptureCallback((err) => {
/third_party/node/doc/api/
Drepl.md179 * Trying to use [`process.setUncaughtExceptionCaptureCallback()`][] throws
768 [`process.setUncaughtExceptionCaptureCallback()`]: process.md#process_process_setuncaughtexceptionc…
Dprocess.md316 [`process.setUncaughtExceptionCaptureCallback()`][] is called.
1410 [`process.setUncaughtExceptionCaptureCallback()`][].
2369 ## `process.setUncaughtExceptionCaptureCallback(fn)`
2376 The `process.setUncaughtExceptionCaptureCallback()` function sets a function
2387 `process.setUncaughtExceptionCaptureCallback(null)` may be used. Calling this
2785 [`process.setUncaughtExceptionCaptureCallback()`]: #process_process_setuncaughtexceptioncapturecall…
Derrors.md935 [`process.setUncaughtExceptionCaptureCallback()`][] had been called at an
941 [`process.setUncaughtExceptionCaptureCallback()`][] could not be called
2114 [`process.setUncaughtExceptionCaptureCallback()`][] was called twice,
2648 [`process.setUncaughtExceptionCaptureCallback()`]: process.md#process_process_setuncaughtexceptionc…
Dcli.md68 [`process.setUncaughtExceptionCaptureCallback()`][] (and through usage of the
1698 [`process.setUncaughtExceptionCaptureCallback()`]: process.md#process_process_setuncaughtexceptionc…
/third_party/node/doc/changelogs/
DCHANGELOG_V9.md1394 …* process.setUncaughtExceptionCaptureCallback can now be used to customize behavior for `--abort-o…
DCHANGELOG_V14.md2317 …ithub.com/nodejs/node/commit/d58a466da0)] - **lib**: honor setUncaughtExceptionCaptureCallback (Gi…