/third_party/node/test/parallel/ |
D | test-preload.js | 10 const childProcess = require('child_process'); constant 37 childProcess.exec( 45 childProcess.exec(`"${nodeBinary}" ${preloadOption([fixtureA])} "${fixtureB}"`, 52 childProcess.exec( 61 childProcess.exec( 73 childProcess.exec( 82 childProcess.exec( 93 childProcess.exec( 108 const stdinProc = childProcess.spawn( 124 const replProc = childProcess.spawn( [all …]
|
D | test-openssl-ca-options.js | 10 const childProcess = require('child_process'); constant 11 const result = childProcess.spawnSync( 22 const useBundledCA = childProcess.spawnSync(process.execPath, [ 27 const useOpenSSLCA = childProcess.spawnSync(process.execPath, [
|
D | test-child-process-silent.js | 25 const childProcess = require('child_process'); constant 42 const child = childProcess.fork(process.argv[1], ['pipe'], { silent: true }); 56 const parent = childProcess.spawn(process.execPath, args); 69 const child = childProcess.fork(process.argv[1], ['ipc'], { silent: true });
|
D | test-stdin-from-file.js | 7 const childProcess = require('child_process'); constant 34 childProcess.exec(cmd, common.mustCall(function(err, stdout, stderr) {
|
D | test-async-hooks-fatal-error.js | 4 const childProcess = require('child_process'); constant 43 const cp = childProcess.spawnSync(
|
D | test-stdout-to-file.js | 5 const childProcess = require('child_process'); constant 26 childProcess.exec(cmd, common.mustSucceed(() => {
|
D | test-debugger-websocket-secret-mismatch.js | 7 const childProcess = require('child_process'); constant 35 childProcess.spawn(process.execPath, ['inspect', `localhost:${port}`]);
|
/third_party/ejdb/src/bindings/ejdb2_node/ |
D | utils.js | 31 const childProcess = require('child_process'); constant 47 return awaitProcess(childProcess.spawn(name, args, { 57 const proc = childProcess.spawn(name, args, { 71 function awaitProcess(childProcess) { argument 73 childProcess.once('exit', (code) => { 80 childProcess.once('error', (err) => reject(err));
|
/third_party/node/test/pseudo-tty/ |
D | test-trace-sigint.js | 4 const childProcess = require('child_process'); constant 12 const cp = childProcess.spawn(
|
D | test-trace-sigint-on-idle.js | 3 const childProcess = require('child_process'); constant 11 const cp = childProcess.spawn(
|
D | test-trace-sigint-disabled.js | 4 const childProcess = require('child_process'); constant 12 const cp = childProcess.spawn(
|
/third_party/node/deps/npm/node_modules/worker-farm/lib/ |
D | fork.js | 3 const childProcess = require('child_process') constant 17 , child = childProcess.fork(childModule, process.argv, options)
|
/third_party/node/deps/npm/node_modules/opener/lib/ |
D | opener.js | 2 var childProcess = require("child_process"); variable 65 return childProcess.execFile(command, args, options, callback);
|
/third_party/node/deps/npm/node_modules/node-gyp/test/ |
D | test-addon.js | 6 const childProcess = require('child_process') constant 10 const execFileSync = childProcess.execFileSync || require('./process-exec-sync') 11 const execFile = childProcess.execFile
|
D | process-exec-sync.js | 4 const childProcess = require('child_process') constant 52 child = childProcess.exec(command, options)
|
/third_party/node/tools/ |
D | lint-sh.js | 110 let childProcess = shellcheck; 123 childProcess = gitApply; 131 childProcess.once('exit', (code) => {
|
D | find-inactive-collaborators.mjs | 14 const childProcess = cp.spawn('/bin/sh', ['-c', cmd], { 20 input: childProcess.stdout, 23 (_, reject) => childProcess.on('error', reject)
|
/third_party/typescript/src/testRunner/unittests/tsc/ |
D | etsTests.ts | 4 const childProcess: typeof import("child_process") = require("child_process"); constant 14 childProcess.exec(cmd, {
|
/third_party/typescript/scripts/ |
D | produceLKG.ts | 3 import childProcess = require("child_process"); 102 childProcess.execSync(cmdLine);
|
D | authors.ts | 3 import childProcess = require("child_process"); 121 …const {output: [error, stdout, stderr]} = childProcess.spawnSync(`git`, ["shortlog", "-se", ...spe…
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | node-gyp.js | 6 const childProcess = require('child_process') constant 173 var cp = childProcess.spawn(command, args, opts)
|
/third_party/node/deps/npm/node_modules/npm-run-path/ |
D | readme.md | 18 const childProcess = require('child_process'); 28 childProcess.execFileSync('foo', {
|
/third_party/node/deps/npm/node_modules/execa/ |
D | index.js | 2 const childProcess = require('child_process'); constant 139 spawned = childProcess.spawn(parsed.cmd, parsed.args, parsed.opts); 295 const result = childProcess.spawnSync(parsed.cmd, parsed.args, parsed.opts);
|
/third_party/typescript/scripts/importDefinitelyTypedTests/ |
D | importDefinitelyTypedTests.ts | 3 import * as childProcess from "child_process"; 62 childProcess.exec(cmd, {
|
/third_party/node/test/sequential/ |
D | test-inspector-port-cluster.js | 13 const childProcess = require('child_process'); constant 329 childProcess.fork(__filename, {
|