Home
last modified time | relevance | path

Searched refs:spawned (Results 1 – 25 of 62) sorted by relevance

123

/third_party/node/deps/npm/node_modules/execa/
Dindex.js60 function handleInput(spawned, opts) { argument
68 input.pipe(spawned.stdin);
70 spawned.stdin.end(input);
137 let spawned; variable
139 spawned = childProcess.spawn(parsed.cmd, parsed.args, parsed.opts);
147 spawned.kill();
165 spawned.kill(parsed.opts.killSignal);
170 spawned.on('exit', (code, signal) => {
175 spawned.on('error', err => {
180 if (spawned.stdin) {
[all …]
Dreadme.md14 - [Cleans up spawned processes when the parent process dies.](#cleanup)
205 Keep track of the spawned process and `kill` it when the parent process exits.
233 Signal value to be used when the spawned process will be killed.
/third_party/node/deps/npm/node_modules/cross-spawn/
Dindex.js11 var spawned;
17 spawned = cp.spawn(parsed.command, parsed.args, parsed.options);
21 enoent.hookChildProcess(spawned, parsed);
23 return spawned;
/third_party/flutter/flutter/examples/layers/services/
Disolate.dart75 // Structured message to initialize the spawned isolate.
82 // A manager for the connection to a spawned isolate.
117 // Kills the isolate immediately, if spawned. Does nothing if the
135 // Load the JSON string. This is done in the main isolate because spawned
170 // Main entry point for the spawned isolate.
174 // message will contain a SendPort so that the spawned isolate can
177 // Static and global variables are initialized anew in the spawned isolate,
/third_party/node/test/pummel/
Dtest-policy-integrity.js90 let spawned = 0; variable
98 if (spawned > cpus) {
170 spawned++;
177 spawned--;
/third_party/node/doc/api/
Dchild_process.md31 the parent Node.js process and the spawned subprocess. These pipes have
52 the event loop until the spawned process either exits or is terminated.
76 stalling the event loop while spawned processes complete.
322 executable `file` is spawned directly as a new process making it slightly more
326 not spawned, behaviors such as I/O redirection and file globbing are not
428 * `killSignal` {string|integer} The signal value to be used when the spawned
452 Keep in mind that spawned Node.js child processes are
557 * `killSignal` {string|integer} The signal value to be used when the spawned
579 Use `cwd` to specify the working directory from which the process is spawned.
847 Node.js event loop, pausing execution of any additional code until the spawned
[all …]
Dcluster.md61 The worker processes are spawned using the [`child_process.fork()`][] method,
106 re-spawned depending on a program's needs, without affecting other
714 global setting and effectively frozen once either the first worker is spawned,
Dprocess.md63 If the Node.js process is spawned with an IPC channel (see the [Child Process][]
116 If the Node.js process is spawned with an IPC channel (see the [Child Process][]
714 If the Node.js process was spawned with an IPC channel (see the
820 If the Node.js process is spawned with an IPC channel (see the [Child Process][]
892 If the Node.js process is spawned with an IPC channel (see the [Child Process][]
900 If the Node.js process was not spawned with an IPC channel,
2201 If Node.js is spawned with an IPC channel, the `process.send()` method can be
2205 If Node.js was not spawned with an IPC channel, `process.send` will be
/third_party/libwebsockets/minimal-examples/ws-client/minimal-ws-client-tx/
DREADME.md5 Two threads are spawned that produce messages to be sent to the broker,
/third_party/libuv/docs/src/
Dprocess.rst168 The PID of the spawned process. It's set after calling :c:func:`uv_spawn`.
239 inherited from its parent. The effect is that child processes spawned by
253 successfully spawned, this function will return 0. Otherwise, the
Dfs_event.rst16 must be spawned for each monitor for the same event.
/third_party/googletest/googletest/src/
Dgtest-death-test.cc416 bool spawned() const { return spawned_; } in spawned() function in testing::internal::DeathTestImpl
571 if (!spawned()) in Passed()
682 if (!spawned()) in Wait()
883 if (!spawned()) in Wait()
1096 if (!spawned()) in Wait()
/third_party/mesa3d/src/gtest/src/
Dgtest-death-test.cc415 bool spawned() const { return spawned_; } in spawned() function in testing::internal::DeathTestImpl
570 if (!spawned()) in Passed()
681 if (!spawned()) in Wait()
882 if (!spawned()) in Wait()
1097 if (!spawned()) in Wait()
/third_party/node/deps/npm/node_modules/set-blocking/
DREADME.md26 * this patch will not apply to subprocesses spawned with `isTTY = true`, this is
/third_party/openssl/VMS/
Dopenssl_ivp.com.in4 $ ! It had better be spawned, as it creates process logicals
/third_party/flutter/flutter/packages/flutter_goldens/test/
Dflutter_goldens_test.dart53 // Verify that we only spawned `git rev-parse HEAD`
81 // Verify that we spawned no process calls
/third_party/toybox/kconfig/
DREADME11 each of which spawned long "I think you should go do this and this and this
/third_party/python/Doc/library/
Dpty.rst47 spawned behind the pty will eventually terminate, and when it does *spawn*
/third_party/flutter/flutter/packages/flutter_tools/tool/
Dtool_coverage.dart47 /// A platform that loads tests in isolates spawned within this Dart process.
/third_party/flutter/flutter/packages/flutter_tools/lib/src/fuchsia/
Dfuchsia_pm.dart198 /// be spawned, and true otherwise.
/third_party/cef/patch/patches/
Dchrome_runtime.patch74 // Reset the command line for the newly spawned process.
/third_party/node/deps/npm/node_modules/make-fetch-happen/
DREADME.md131 …d as-is to the underlying request library. This causes a new Agent to be spawned for every request.
317 Http/Https/Proxy agents. This setting applies once per spawned agent.
/third_party/openssl/doc/man3/
DSSL_alert_type_string.pod211 appropriate would be where a server has spawned a process to
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/
DEXT_separate_specular_color.txt183 secondary colors. These come from the vertex that spawned the
/third_party/openGLES/extensions/EXT/
DEXT_separate_specular_color.txt183 secondary colors. These come from the vertex that spawned the

123