Lines Matching defs:child
29 if (modeArgv === 'child')
30 child(sectionArgv);
63 const child = spawn(process.execPath, [__filename, 'child', section], {
77 const start = `${section.toUpperCase()} ${num[0]}${child.pid}${num[1]}`;
83 const start = `${section.toUpperCase()} ${child.pid}`;
91 child.stderr.setEncoding('utf8');
92 child.stderr.on('data', (c) => {
97 child.stdout.setEncoding('utf8');
98 child.stdout.on('data', (c) => {
102 child.on('close', common.mustCall((c) => {
114 function child(section) {