Home
last modified time | relevance | path

Searched refs:async_id_symbol (Results 1 – 16 of 16) sorted by relevance

/third_party/node/lib/internal/
Dasync_hooks.js95 const { async_id_symbol,
306 if (promise[async_id_symbol]) {
315 promise[async_id_symbol] = newAsyncId();
321 const asyncId = promise[async_id_symbol];
335 const asyncId = promise[async_id_symbol];
343 const asyncId = promise[async_id_symbol];
350 const asyncId = promise[async_id_symbol];
366 const asyncId = promise[async_id_symbol];
418 if (ObjectPrototypeHasOwnProperty(object, async_id_symbol)) {
419 return object[async_id_symbol];
[all …]
Dtimers.js106 const async_id_symbol = Symbol('asyncId'); constant
156 const asyncId = resource[async_id_symbol] = newAsyncId();
331 if (isDestroyed || !item[async_id_symbol]) {
458 const asyncId = immediate[async_id_symbol];
533 const asyncId = timer[async_id_symbol];
642 async_id_symbol, property
/third_party/node/lib/
Dtimers.js37 async_id_symbol,
85 delete knownTimersById[item[async_id_symbol]];
88 if (destroyHooksExist() && item[async_id_symbol] !== undefined)
89 emitDestroy(item[async_id_symbol]);
261 const id = this[async_id_symbol];
329 if (destroyHooksExist() && immediate[async_id_symbol] !== undefined) {
330 emitDestroy(immediate[async_id_symbol]);
Dnet.js73 symbols: { async_id_symbol, owner_symbol }
260 self[async_id_symbol] = getNewAsyncId(self._handle);
288 this[async_id_symbol] = -1;
321 this[async_id_symbol] = getNewAsyncId(this._handle);
339 this[async_id_symbol] = this._handle.getAsyncId();
472 defaultTriggerAsyncIdScope(this[async_id_symbol], process.nextTick, cb, er);
986 this[async_id_symbol], internalConnect, this, path
1020 defaultTriggerAsyncIdScope(self[async_id_symbol], process.nextTick, () => {
1023 self[async_id_symbol],
1053 defaultTriggerAsyncIdScope(self[async_id_symbol], function() {
[all …]
Dasync_hooks.js53 async_id_symbol, trigger_async_id_symbol,
172 this[async_id_symbol] = asyncId;
192 const asyncId = this[async_id_symbol];
210 emitDestroy(this[async_id_symbol]);
215 return this[async_id_symbol];
Ddgram.js66 symbols: { async_id_symbol, owner_symbol }
116 this[async_id_symbol] = handle.getAsyncId();
408 this[async_id_symbol],
661 this[async_id_symbol],
745 defaultTriggerAsyncIdScope(this[async_id_symbol],
D_http_agent.js38 const { async_id_symbol } = require('internal/async_hooks').symbols;
169 socket[async_id_symbol] = -1;
506 socket[async_id_symbol] = handle.getAsyncId();
D_http_outgoing.js49 symbols: { async_id_symbol }
695 const triggerAsyncId = msg.socket ? msg.socket[async_id_symbol] : undefined;
/third_party/node/test/parallel/
Dtest-async-hooks-http-agent.js5 const { async_id_symbol } = require('internal/async_hooks').symbols;
38 const asyncIdAtFirstRequest = socket[async_id_symbol];
48 assert.strictEqual(socket[async_id_symbol], -1);
59 const asyncId = res.socket[async_id_symbol];
Dtest-async-hooks-http-agent-destroy.js5 const { async_id_symbol } = require('internal/async_hooks').symbols;
48 const asyncIdAtFirstRequest = socket[async_id_symbol];
58 assert.strictEqual(socket[async_id_symbol], -1);
Dtest-http-client-immediate-error.js15 symbols: { async_id_symbol }
32 sock[async_id_symbol] = newAsyncId();
/third_party/node/test/async-hooks/
Dtest-http-agent-handle-reuse-serial.js7 const { async_id_symbol } = require('internal/async_hooks').symbols;
45 asyncIdAtFirstReq = socket[async_id_symbol];
55 assert.strictEqual(socket[async_id_symbol], -1);
66 asyncIdAtSecondReq = res.socket[async_id_symbol];
Dtest-http-agent-handle-reuse-parallel.js7 const { async_id_symbol } = require('internal/async_hooks').symbols;
28 reqAsyncIds[idx] = res.socket[async_id_symbol];
/third_party/node/lib/internal/process/
Dtask_queues.js34 symbols: { async_id_symbol, trigger_async_id_symbol }
71 const asyncId = tock[async_id_symbol];
127 [async_id_symbol]: asyncId,
/third_party/node/lib/internal/http2/
Dcore.js52 async_id_symbol,
1886 this[async_id_symbol] = -1;
1938 this[async_id_symbol] = handle.getAsyncId();
2429 defaultTriggerAsyncIdScope(self[async_id_symbol], startFilePipe,
/third_party/node/src/
Denv.h160 V(async_id_symbol, "async_id_symbol") \