/third_party/node/test/parallel/ |
D | test-child-process-spawn-typeerror.js | 25 const { spawn, fork, execFile } = require('child_process'); 127 execFile(cmd); 128 execFile(cmd, a); 129 execFile(cmd, a, o); 130 execFile(cmd, a, o, c); 131 execFile(cmd, a, c); 132 execFile(cmd, o); 133 execFile(cmd, o, c); 134 execFile(cmd, c); 137 execFile(cmd, u, o, c); [all …]
|
D | test-child-process-execfile-maxbuf.js | 4 const { execFile } = require('child_process'); 16 execFile( 25 execFile( 38 execFile( 50 execFile('echo', ['hello world'], { maxBuffer: 5 }, checkFactory('stdout')); 56 execFile( 64 execFile( 73 const child = execFile( 84 const child = execFile(
|
D | test-child-process-execfile.js | 6 const execFile = require('child_process').execFile; constant 16 execFile( 41 const child = execFile(process.execPath, callback); 49 execFile(process.execPath, [fixture, 0], execOpts, common.mustSucceed()); 63 execFile(process.execPath, [echoFixture, 0], { signal }, check); 82 execFile(process.execPath, [echoFixture, 0], { signal }, check); 91 execFile(process.execPath, [echoFixture, 0], { signal: 'hello' }, callback); 103 execFile(process.execPath, [fixture, 0], { signal }, callback);
|
D | test-child-process-promisified.js | 8 const execFile = promisify(child_process.execFile); constant 20 const promise = execFile(process.execPath, ['-p', '42']); 38 const promise = execFile('doesntexist', ['-p', '42']); 57 execFile(process.execPath, ['-e', failingCodeWithStdoutErr])
|
D | test-os-userinfo-handles-getter-errors.js | 7 const execFile = require('child_process').execFile; constant 16 execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
|
D | test-vm-api-handles-getter-errors.js | 8 const execFile = require('child_process').execFile; constant 32 execFile(node, [ '-e', script ], common.mustCall((err, stdout, stderr) => {
|
D | test-sync-io-option.js | 5 const execFile = promisify(require('child_process').execFile); constant 30 await execFile(process.execPath, [...execArgv, __filename, variant]);
|
D | test-child-process-execFile-promisified-abortController.js | 7 const execFile = require('child_process').execFile; constant 11 const promisified = promisify(execFile);
|
D | test-trace-exit.js | 5 const execFile = promisify(require('child_process').execFile); constant 44 await execFile(process.execPath, [...execArgv, __filename, variant]);
|
D | test-process-uncaught-exception-monitor.js | 5 const { execFile } = require('child_process'); 11 execFile( 28 execFile(
|
D | test-common.js | 28 const { execFile } = require('child_process'); 35 execFile(process.execPath, [p], common.mustCall((err, stdout, stderr) => { 44 execFile(process.execPath, [p], { 102 execFile(process.execPath, [file], common.mustCall((err, stdout, stderr) => {
|
D | test-intl.js | 25 const { execFile } = require('child_process'); 140 execFile( 150 execFile(
|
D | test-common-countdown.js | 7 const { execFile } = require('child_process'); 27 execFile(process.argv[0], [file], common.mustCall((ex, stdout, stderr) => {
|
/third_party/node/test/sequential/ |
D | test-deprecation-flags.js | 26 const execFile = require('child_process').execFile; constant 43 execFile(node, normal, function(er, stdout, stderr) { 51 execFile(node, noDep, function(er, stdout, stderr) { 59 execFile(node, traceDep, function(er, stdout, stderr) { 70 execFile(node, [depUserlandFunction], function(er, stdout, stderr) { 78 execFile(node, [depUserlandClass], function(er, stdout, stderr) { 84 execFile(node, [depUserlandSubClass], function(er, stdout, stderr) {
|
D | test-process-warnings.js | 6 const execFile = require('child_process').execFile; constant 16 execFile(node, normal, function(er, stdout, stderr) { 23 execFile(node, noWarn, function(er, stdout, stderr) { 30 execFile(node, traceWarn, function(er, stdout, stderr) {
|
D | test-inspector-invalid-args.js | 8 const execFile = require('child_process').execFile; constant 15 execFile(
|
/third_party/node/deps/npm/node_modules/node-gyp/test/ |
D | test-find-python.js | 7 const execFile = require('child_process').execFile constant 17 var proc = execFile(found, ['-V'], function (err, stdout, stderr) { 64 f.execFile = function (program, args, opts, cb) { function 65 f.execFile = function (program, args, opts, cb) { function 88 f.execFile = function (program, args, opts, cb) { function 109 f.execFile = function (program, args, opts, cb) { function 133 f.execFile = function (program, args, opts, cb) { function 154 f.execFile = function (program, args, opts, cb) { function 187 f.execFile = function (program, args, opts, cb) { function 189 f.execFile = function (program, args, opts, cb) { function [all …]
|
D | test-addon.js | 11 const execFile = childProcess.execFile constant 43 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) { 109 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) { 140 var proc = execFile(process.execPath, cmd, function (err, stdout, stderr) {
|
/third_party/ejdb/src/bindings/ejdb2_react_native/tests/e2e/ |
D | init.js | 3 const execFile = require('child_process').execFile; constant 13 server = execFile('yarn', ['run', 'start'], {}); 27 execFile('yarn', ['run', 'stop'], {});
|
/third_party/node/tools/ |
D | build-addons.js | 10 const execFile = util.promisify(child_process.execFile); constant 34 await execFile(process.execPath, [nodeGyp, 'rebuild', `--directory=${dir}`],
|
/third_party/node/deps/npm/test/need-npm5-update/belongs-in-pacote/ |
D | git-races.js | 2 var execFile = require('child_process').execFile variable 76 execFile(cmd, args, options, cb) 84 execFile(cmd, args, options, cb) 112 return execFile(gitcmd, fullArgs, options, cb)
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | util.js | 4 const execFile = require('child_process').execFile constant 27 const child = execFile(reg, regArgs, { encoding: 'utf8' },
|
D | find-python.js | 24 execFile: cp.execFile, property in PythonFinder 260 this.execFile(exec, args, opts, execFileCallback.bind(this))
|
/third_party/node/test/pummel/ |
D | test-hash-seed.js | 16 const { execFile } = require('child_process'); 17 const execFilePromise = promisify(execFile);
|
/third_party/protobuf/js/ |
D | gulpfile.js | 2 var execFile = require('child_process').execFile; variable 6 execFile('sh', ['-c', command], cb);
|