/third_party/node/test/internet/ |
H A D | test-dgram-multicast-multi-process.js | 42 let listening, sendSocket, done, timer, dead; 73 if (msg.listening) { 74 listening += 1; 76 if (listening === listeners) { 77 // All child process are listening, so start sending. 133 listening = 0; 157 sendSocket.on('listening', function() { 203 listenSocket.on('listening', function() { 231 process.send({ listening: true });
|
H A D | test-dgram-multicast-ssmv6-multi-process.js | 21 let listening, sendSocket, done, timer, dead; 67 if (msg.listening) { 68 listening += 1; 70 if (listening === listeners) { 71 // All child process are listening, so start sending. 127 listening = 0; 151 sendSocket.on('listening', function() { 197 listenSocket.on('listening', function() { 227 process.send({ listening: true });
|
H A D | test-dgram-multicast-ssm-multi-process.js | 21 let listening, sendSocket, done, timer, dead; 67 if (msg.listening) { 68 listening += 1; 70 if (listening === listeners) { 71 // All child process are listening, so start sending. 127 listening = 0; 151 sendSocket.on('listening', function() { 197 listenSocket.on('listening', function() { 227 process.send({ listening: true });
|
H A D | test-dgram-broadcast-multi-process.js | 61 let listening = 0; 114 if (msg.listening) { 115 listening += 1; 117 if (listening === listeners) { 118 // All child process are listening, so start sending 175 sendSocket.on('listening', () => { 250 listenSocket.on('listening', () => { process.send({ listening: true }); });
|
H A D | test-dgram-multicast-set-interface-lo.js | 81 let listening = 0; 148 if (msg.listening) { 149 listening += 1; 151 if (listening === listeners) { 152 // All child process are listening, so start sending. 210 sendSocket.on('listening', () => { 284 listenSocket.on('listening', () => { 286 process.send({ listening: true });
|
/third_party/node/test/parallel/ |
H A D | test-cluster-basic.js | 61 listening: false, 67 listening: false, 75 listening: false, 80 listening: false, 86 listening: false, 112 // Kill worker when listening 113 cluster.on('listening', common.mustCall(() => { 142 case 'listening': {
|
H A D | test-https-strict.js | 88 server1.listen(0, listening()); 89 server2.listen(0, listening()); 90 server3.listen(0, listening()); 110 function listening() { function
|
H A D | test-cluster-dgram-1.js | 41 let listening = 0; 47 // Wait until all workers are listening. 48 cluster.on('listening', common.mustCall((worker, address) => { 49 if (++listening < NUM_WORKERS) 97 // Create udp socket and start listening.
|
H A D | test-cluster-dgram-bind-fd.js | 32 let listening = 0; 38 // Wait until all workers are listening. 39 cluster.on('listening', common.mustCall((worker, address) => { 40 if (++listening < NUM_WORKERS) 94 // Create udp socket and start listening.
|
H A D | test-async-hooks-http-parser-destroy.js | 41 if (destroyedIdsIncomingMessage.length === N && server.listening) {
|
H A D | test-https-hwm.js | 37 console.log(`test https server listening on port ${this.address().port}`);
|
H A D | test-inspector-port-zero.js | 22 assert.match(stderr, /Debugger listening on (.+)/);
|
H A D | test-domain-http-server.js | 68 debug(`listening on localhost:${port}`);
|
H A D | test-listen-fd-cluster.js | 51 // WARNING: This is an example of listening on some arbitrary FD number 88 console.error(`server listening on ${port}`); 145 console.error('worker listening on fd=3');
|
H A D | test-net-connect-options-allowhalfopen.js | 100 console.log(`Server started listening at ${host}:${port}`);
|
/third_party/node/test/sequential/ |
H A D | test-dgram-pingpong.js | 17 server.on('listening', function() { 18 console.log(`server listening on ${port}`);
|
/third_party/node/lib/internal/cluster/ |
H A D | primary.js | 100 if (worker.state === 'online' || worker.state === 'listening') { 243 listening, 324 function listening(worker, message) { function 332 worker.state = 'listening'; 333 worker.emit('listening', info); 334 cluster.emit('listening', worker, info);
|
/third_party/node/lib/internal/util/ |
H A D | inspector.js | 19 const kInspectMsgRegex = /Debugger listening on ws:\/\/\[?(.+?)\]?:(\d+)\/|For help, see: https:\/\/nodejs\.org\/en\/docs\/inspector|Debugger attached|Waiting for the debugger to disconnect\.\.\./;
|
/third_party/node/lib/internal/debugger/ |
H A D | inspect.js | 75 const debugRegex = /Debugger listening on ws:\/\/\[?(.+?)\]?:(\d+)\//;
|
/third_party/node/test/common/ |
H A D | inspector-helper.js | 387 const matches = line.match(/Debugger listening on ws:\/\/.+:(\d+)\/.+/);
|