Searched refs:kPort (Results 1 - 7 of 7) sorted by relevance
/third_party/node/lib/internal/worker/ |
H A D | io.js | 76 const kPort = Symbol('kPort'); 335 this[kPort] = port; 341 if (--this[kPort][kWaitingStreams] === 0) 342 this[kPort].unref(); 350 if (this[kPort][kWaitingStreams]++ === 0) 351 this[kPort].ref(); 354 this[kPort].postMessage({ 364 this[kPort] = port; 370 this[kPort] [all...] |
/third_party/node/lib/internal/ |
H A D | worker.js | 50 kPort, 224 this[kPort] = this[kHandle].messagePort; 225 this[kPort].on('message', (data) => this[kOnMessage](data)); 226 this[kPort].start(); 227 this[kPort].unref(); 228 this[kPort][kWaitingStreams] = 0; 233 stdin = new WritableWorkerStdio(this[kPort], 'stdin'); 234 const stdout = new ReadableWorkerStdio(this[kPort], 'stdout'); 239 const stderr = new ReadableWorkerStdio(this[kPort], 'stderr'); 259 this[kPort] [all...] |
H A D | url.js | 148 kPort: 3, 917 const href = bindingUrl.update(this[context].href, updateActions.kPort, `${value}`);
|
/third_party/node/test/parallel/ |
H A D | test-cluster-child-index-dgram.js | 12 const kPort = 0; 21 socket.bind(kPort, common.mustCall(() => { 27 socket2.bind(kPort, common.mustCall(() => {
|
H A D | test-cluster-child-index-net.js | 9 const kPort = 0; 18 server.listen(kPort, common.mustCall(() => { 21 server2.listen(kPort, common.mustCall(() => {
|
/third_party/node/src/ |
H A D | node_url.h | 24 kPort = 3, enumerator
|
H A D | node_url.cc | 272 case kPort: { in Update()
|
Completed in 4 milliseconds