Home
last modified time | relevance | path

Searched refs:ChildProcess (Results 1 - 6 of 6) sorted by relevance

/third_party/node/test/parallel/
H A Dtest-child-process-bad-stdio.js15 const ChildProcess = require('internal/child_process').ChildProcess;
16 const original = ChildProcess.prototype.spawn; class
18 ChildProcess.prototype.spawn = function() {
H A Dtest-child-process-exec-kill-throws.js13 // Monkey patch ChildProcess#kill() to kill the process and then throw.
14 const kill = internalCp.ChildProcess.prototype.kill;
16 internalCp.ChildProcess.prototype.kill = function() {
25 // Verify that if ChildProcess#kill() throws, the error is reported.
H A Dtest-child-process-windows-hide.js13 const originalSpawn = internalCp.ChildProcess.prototype.spawn;
16 internalCp.ChildProcess.prototype.spawn = common.mustCall(function(options) {
/third_party/node/lib/internal/
H A Dchild_process.js253 function ChildProcess() { class
306 ObjectSetPrototypeOf(ChildProcess.prototype, EventEmitter.prototype);
307 ObjectSetPrototypeOf(ChildProcess, EventEmitter);
348 ChildProcess.prototype.spawn = function(options) {
486 ChildProcess.prototype.kill = function(sig) {
513 ChildProcess.prototype[SymbolDispose] = function() {
520 ChildProcess.prototype.ref = function() {
525 ChildProcess.prototype.unref = function() {
573 'Use ChildProcess.channel instead.';
1126 ChildProcess,
511 ChildProcess.prototype[SymbolDispose] = function() { global() function
[all...]
/third_party/node/src/permission/
H A Dpermission_base.h20 #define CHILD_PROCESS_PERMISSIONS(V) V(ChildProcess, "child", PermissionsRoot)
/third_party/node/lib/
H A Dchild_process.js92 ChildProcess,
121 * @returns {ChildProcess}
230 * @returns {ChildProcess}
326 * @returns {ChildProcess}
751 * @returns {ChildProcess}
758 const child = new ChildProcess();
1013 ChildProcess,

Completed in 3 milliseconds