Searched refs:owner_symbol (Results 1 – 17 of 17) sorted by relevance
/third_party/node/lib/internal/ |
D | js_stream_socket.js | 18 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); }
|
D | heap_utils.js | 9 const { owner_symbol } = require('internal/async_hooks').symbols; 18 handle[owner_symbol] = this; 30 this[kHandle][owner_symbol] = undefined;
|
D | blocklist.js | 31 const { owner_symbol } = internalBinding('symbols'); 43 this[kHandle][owner_symbol] = this; 147 this[kHandle][owner_symbol] = this; 156 handle[owner_symbol] = this;
|
D | stream_base_commons.js | 25 const { owner_symbol } = require('internal/async_hooks').symbols; 85 const stream = this.handle[owner_symbol]; 169 const stream = this[owner_symbol];
|
D | async_hooks.js | 84 const { resource_symbol, owner_symbol } = internalBinding('symbols'); 576 promise_resolve_symbol, owner_symbol field
|
D | child_process.js | 51 const { owner_symbol } = require('internal/async_hooks').symbols; 259 this._handle[owner_symbol] = this;
|
/third_party/node/lib/internal/fs/ |
D | watchers.js | 34 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.js | 55 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 …]
|
D | dgram.js | 66 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; }
|
D | zlib.js | 71 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; }
|
D | net.js | 73 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/ |
D | child.js | 14 const { owner_symbol } = require('internal/async_hooks').symbols; 225 if (handle[owner_symbol]) 226 handle[owner_symbol].close(checkWaitingCount);
|
/third_party/node/src/ |
D | tcp_wrap.cc | 82 t->InstanceTemplate()->Set(env->owner_symbol(), Null(env->isolate())); in Initialize()
|
D | async_wrap.cc | 717 env->owner_symbol()).ToLocal(&owner) || in GetOwner()
|
D | env.h | 168 V(owner_symbol, "owner_symbol") \
|
/third_party/node/lib/internal/http2/ |
D | core.js | 53 owner_symbol, 217 const kOwner = owner_symbol;
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V10.md | 2332 …ithub.com/nodejs/node/commit/46fbc23614)] - **lib,src**: standardize `owner_symbol` for handles (A…
|