Lines Matching defs:child
35 case 'child':
36 return child();
43 const child = spawn(process.execPath, [__filename, 'child']);
47 child.stdout.setEncoding('ascii');
48 child.stdout.on('data', mustCallAtLeast((c) => {
51 child.stdout.on('end', mustCall(() => {
62 } while (child.stdin.write(buf));
68 child.stdin.write(buf);
72 child.stdin.end();
77 function child() {