Home
last modified time | relevance | path

Searched refs:owner_symbol (Results 1 – 17 of 17) sorted by relevance

/third_party/node/lib/internal/
Djs_stream_socket.js18 const { owner_symbol } = require('internal/async_hooks').symbols;
25 function isClosing() { return this[owner_symbol].isClosing(); }
27 function onreadstart() { return this[owner_symbol].readStart(); }
29 function onreadstop() { return this[owner_symbol].readStop(); }
31 function onshutdown(req) { return this[owner_symbol].doShutdown(req); }
33 function onwrite(req, bufs) { return this[owner_symbol].doWrite(req, bufs); }
Dheap_utils.js9 const { owner_symbol } = require('internal/async_hooks').symbols;
18 handle[owner_symbol] = this;
30 this[kHandle][owner_symbol] = undefined;
Dblocklist.js31 const { owner_symbol } = internalBinding('symbols');
43 this[kHandle][owner_symbol] = this;
147 this[kHandle][owner_symbol] = this;
156 handle[owner_symbol] = this;
Dstream_base_commons.js25 const { owner_symbol } = require('internal/async_hooks').symbols;
85 const stream = this.handle[owner_symbol];
169 const stream = this[owner_symbol];
Dasync_hooks.js84 const { resource_symbol, owner_symbol } = internalBinding('symbols');
576 promise_resolve_symbol, owner_symbol field
Dchild_process.js51 const { owner_symbol } = require('internal/async_hooks').symbols;
259 this._handle[owner_symbol] = this;
/third_party/node/lib/internal/fs/
Dwatchers.js34 symbols: { owner_symbol }
80 const self = this[owner_symbol];
105 this._handle[owner_symbol] = this;
190 this._handle[owner_symbol] = this;
293 get() { return this[owner_symbol]; },
294 set(v) { return this[owner_symbol] = v; }
/third_party/node/lib/
D_tls_wrap.js55 const { owner_symbol } = require('internal/async_hooks').symbols;
124 const owner = this[owner_symbol];
140 const owner = this[owner_symbol];
158 const owner = this[owner_symbol];
193 const owner = this[owner_symbol];
280 const owner = this[owner_symbol];
290 const owner = this[owner_symbol];
322 const owner = this[owner_symbol];
354 const owner = this[owner_symbol];
385 this[owner_symbol].emit('keylog', line);
[all …]
Ddgram.js66 symbols: { async_id_symbol, owner_symbol }
114 handle[owner_symbol] = this;
183 newHandle[owner_symbol] = self;
926 const self = handle[owner_symbol];
1039 get() { return this[owner_symbol]; },
1040 set(v) { return this[owner_symbol] = v; }
Dzlib.js71 const { owner_symbol } = require('internal/async_hooks').symbols;
182 const self = this[owner_symbol];
295 handle[owner_symbol] = this;
541 const self = this[owner_symbol];
881 get() { return this[owner_symbol]; },
882 set(v) { return this[owner_symbol] = v; }
Dnet.js73 symbols: { async_id_symbol, owner_symbol }
258 self._handle[owner_symbol] = self;
441 const self = this.handle[owner_symbol];
1122 const self = handle[owner_symbol];
1323 this._handle[owner_symbol] = this;
1546 const self = handle[owner_symbol];
1697 get() { return this[owner_symbol]; },
1698 set(v) { return this[owner_symbol] = v; }
/third_party/node/lib/internal/cluster/
Dchild.js14 const { owner_symbol } = require('internal/async_hooks').symbols;
225 if (handle[owner_symbol])
226 handle[owner_symbol].close(checkWaitingCount);
/third_party/node/src/
Dtcp_wrap.cc82 t->InstanceTemplate()->Set(env->owner_symbol(), Null(env->isolate())); in Initialize()
Dasync_wrap.cc717 env->owner_symbol()).ToLocal(&owner) || in GetOwner()
Denv.h168 V(owner_symbol, "owner_symbol") \
/third_party/node/lib/internal/http2/
Dcore.js53 owner_symbol,
217 const kOwner = owner_symbol;
/third_party/node/doc/changelogs/
DCHANGELOG_V10.md2332 …ithub.com/nodejs/node/commit/46fbc23614)] - **lib,src**: standardize `owner_symbol` for handles (A…