/third_party/node/lib/internal/timers/ |
D | promises.js | 17 AbortError, 26 reject(new AbortError()); 56 return PromiseReject(new AbortError()); 101 return PromiseReject(new AbortError());
|
/third_party/node/test/parallel/ |
D | test-timers-promisified.js | 49 assert.rejects(setTimeout(10, undefined, { signal }), /AbortError/); 57 assert.rejects(setTimeout(10, undefined, { signal }), /AbortError/); 63 assert.rejects(setImmediate(10, { signal }), /AbortError/); 71 assert.rejects(setImmediate(10, { signal }), /AbortError/);
|
D | test-child-process-exec-abortcontroller-promisified.js | 22 assert.rejects(promise, /AbortError/, 'post aborted sync signal failed') 46 assert.rejects(promise, /AbortError/, 'pre aborted signal failed')
|
/third_party/node/lib/internal/fs/ |
D | watchers.js | 11 AbortError, 318 throw new AbortError(); 325 rej(new AbortError()); 373 throw new AbortError();
|
D | promises.js | 26 const { AbortError, codes, hideStackFrames } = require('internal/errors'); 257 throw new AbortError();
|
/third_party/node/lib/internal/ |
D | blob.js | 44 AbortError, 209 return reject(new AbortError());
|
D | errors.js | 743 class AbortError extends Error { class 764 AbortError, property
|
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/ |
D | Errors.h | 40 static Napi::Error AbortError(Napi::Env);
|
D | GPUBuffer.cpp | 94 c->promise.Reject(Errors::AbortError(c->env)); in mapAsync()
|
D | Errors.cpp | 115 Napi::Error Errors::AbortError(Napi::Env env) { in AbortError() function in wgpu::binding::Errors
|
/third_party/node/doc/api/ |
D | timers.md | 253 returned Promises will be rejected with an `'AbortError'`. 267 if (err.name === 'AbortError') 286 if (err.name === 'AbortError')
|
D | child_process.md | 262 the error passed to the callback will be an `AbortError`: 269 console.log(error); // an AbortError 369 the error passed to the callback will be an `AbortError`: 376 console.log(error); // an AbortError 475 the error passed to the callback will be an `AbortError`: 488 // This will be called with err being an AbortError if the controller aborts 668 the error passed to the callback will be an `AbortError`: 676 // This will be called with err being an AbortError if the controller aborts
|
D | readline.md | 313 an `AbortController` it will reject with an `AbortError`.
|
D | fs.md | 967 request is aborted the promise returned is rejected with an `AbortError`: 982 // When a request is aborted - err is an AbortError 1232 if (err.name === 'AbortError') 1308 // When a request is aborted - err is an AbortError 2896 request is aborted the callback is called with an `AbortError`: 3956 // When a request is aborted - the callback is called with an AbortError
|
D | events.md | 933 if (error.name === 'AbortError') {
|
D | errors.md | 625 order to be compatible with the web platform's `AbortError`.
|
D | http2.md | 888 event with an `AbortError` error.
|
/third_party/node/lib/ |
D | child_process.js | 50 AbortError, 622 child.emit('error', new AbortError());
|
D | _http_client.js | 55 const { AbortError, connResetException, codes } = require('internal/errors'); 179 const listener = (e) => this.destroy(new AbortError());
|
D | readline.js | 68 AbortError, 412 reject(new AbortError());
|
/third_party/node/lib/internal/http2/ |
D | core.js | 104 AbortError 1736 const aborter = () => stream.destroy(new AbortError());
|
/third_party/node/test/fixtures/wpt/resources/ |
D | testharness.js | 1420 AbortError: 20, property
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V14.md | 1398 …//github.com/nodejs/node/commit/679973866d)] - **timers**: reject with AbortError on cancellation … 1698 * [[`a27534e883`](https://github.com/nodejs/node/commit/a27534e883)] - **doc**: fix AbortError exam…
|