/third_party/node/test/parallel/ |
D | test-asyncresource-bind.js | 5 const { AsyncResource, executionAsyncId } = require('async_hooks'); 8 return executionAsyncId(); 12 const asyncId = executionAsyncId(); 25 return executionAsyncId(); 32 const asyncId = executionAsyncId();
|
D | test-async-hooks-enable-disable-enable.js | 12 const initialAsyncId = async_hooks.executionAsyncId(); 14 assert.notStrictEqual(async_hooks.executionAsyncId(), initialAsyncId);
|
D | test-async-hooks-enable-before-promise-resolve.js | 13 initialAsyncId = async_hooks.executionAsyncId(); 22 const id = async_hooks.executionAsyncId();
|
D | test-async-hooks-recursive-stack-runInAsyncScope.js | 11 assert.strictEqual(a.asyncId(), async_hooks.executionAsyncId()); 15 assert.strictEqual(a.asyncId(), async_hooks.executionAsyncId());
|
D | test-async-wrap-uncaughtexception.js | 37 assert.strictEqual(call_id, async_hooks.executionAsyncId()); 43 assert.strictEqual(call_id, async_hooks.executionAsyncId());
|
D | test-async-hooks-promise-triggerid.js | 30 assert.strictEqual(async_hooks.executionAsyncId(), promiseAsyncIds[1]);
|
D | test-trace-events-async-hooks.js | 62 return (trace.args.data.executionAsyncId > 0 &&
|
/third_party/node/test/async-hooks/ |
D | test-async-exec-resource-http-32060.js | 6 executionAsyncId, 26 assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]); 28 assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]); 30 assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]); 33 assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]);
|
D | test-async-exec-resource-http.js | 7 executionAsyncId, 24 assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]); 27 assert.strictEqual(executionAsyncResource(), hooked[executionAsyncId()]);
|
D | test-embedder.api.async-resource.js | 29 async_hooks.executionAsyncId() 34 const alcaTriggerId = async_hooks.executionAsyncId();
|
D | test-queue-microtask.js | 12 const rootAsyncId = async_hooks.executionAsyncId();
|
D | test-nexttick-default-trigger.js | 15 const rootAsyncId = async_hooks.executionAsyncId();
|
D | test-embedder.api.async-resource-no-type.js | 16 super(type, async_hooks.executionAsyncId());
|
/third_party/node/test/addons/async-hooks-id/ |
D | test.js | 10 async_hooks.executionAsyncId() 20 async_hooks.executionAsyncId()
|
/third_party/node/benchmark/async_hooks/ |
D | async-resource-vs-destroy.js | 11 executionAsyncId, 78 const asyncId = executionAsyncId(); 83 const asyncId = executionAsyncId();
|
/third_party/node/doc/api/ |
D | async_hooks.md | 36 const eid = async_hooks.executionAsyncId(); 268 from `async_hooks.executionAsyncId()` that only shows *when* a resource was 278 const eid = async_hooks.executionAsyncId(); 299 happens outside of any JavaScript stack. (An `executionAsyncId()` of `0` means 332 const eid = async_hooks.executionAsyncId(); 358 console.log('>>>', async_hooks.executionAsyncId()); 380 As illustrated in the example, `executionAsyncId()` and `execution` each specify 509 const { executionAsyncId, executionAsyncResource } = require('async_hooks'); 511 console.log(executionAsyncId(), executionAsyncResource()); // 1 {} 513 console.log(executionAsyncId(), executionAsyncResource()); // 7 FSReqWrap [all …]
|
D | deprecations.md | 1414 `async_hooks.currentId()` was renamed to `async_hooks.executionAsyncId()` for
|
/third_party/node/lib/internal/ |
D | trace_events_async_hooks.js | 52 executionAsyncId: async_hooks.executionAsyncId() property
|
D | async_hooks.js | 354 if (asyncId === executionAsyncId()) { 559 function executionAsyncId() { function 569 executionAsyncId, property
|
/third_party/node/test/addons/async-resource/ |
D | test.js | 11 const rootAsyncId = async_hooks.executionAsyncId(); 53 assert.strictEqual(async_hooks.executionAsyncId(), uid);
|
/third_party/node/lib/internal/process/ |
D | execution.js | 18 executionAsyncId, 189 emitAfter(executionAsyncId());
|
/third_party/node/lib/ |
D | async_hooks.js | 30 executionAsyncId, 346 executionAsyncId, property
|
/third_party/node/test/node-api/test_async/ |
D | test-async-hooks.js | 9 const initAsyncId = async_hooks.executionAsyncId();
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V9.md | 1009 …node/commit/b553daa29b)] - **doc**: add change info for async_hooks.executionAsyncId() (Stephen Be… 1776 …/github.com/nodejs/node/commit/855bb8d486)] - **trace_events**: add executionAsyncId to init event…
|
D | CHANGELOG_V8.md | 1270 …* add executionAsyncId to init events (Andreas Madsen) [#17196](https://github.com/nodejs/node/pul… 1362 …node/commit/83915234ad)] - **doc**: add change info for async_hooks.executionAsyncId() (Stephen Be… 1536 …node/commit/ae4428e967)] - **(SEMVER-MINOR)** **trace_events**: add executionAsyncId to init event…
|