Home
last modified time | relevance | path

Searched refs:spawn (Results 176 - 200 of 238) sorted by relevance

12345678910

/third_party/node/test/pummel/
H A Dtest-policy-integrity-worker-commonjs.js19 const { spawnSync, spawn } = require('child_process');
171 const child = spawn(...spawnArgs);
H A Dtest-policy-integrity-worker-module.js19 const { spawnSync, spawn } = require('child_process');
171 const child = spawn(...spawnArgs);
H A Dtest-policy-integrity-dep.js19 const { spawnSync, spawn } = require('child_process');
153 const child = spawn(...spawnArgs);
H A Dtest-policy-integrity-parent-commonjs.js19 const { spawnSync, spawn } = require('child_process');
154 const child = spawn(...spawnArgs);
H A Dtest-policy-integrity-parent-module.js19 const { spawnSync, spawn } = require('child_process');
154 const child = spawn(...spawnArgs);
H A Dtest-policy-integrity-parent-no-package-json.js19 const { spawnSync, spawn } = require('child_process');
154 const child = spawn(...spawnArgs);
H A Dtest-policy-integrity-worker-no-package-json.js19 const { spawnSync, spawn } = require('child_process');
171 const child = spawn(...spawnArgs);
/third_party/python/Lib/multiprocessing/
H A Dcontext.py149 from .spawn import freeze_support
174 child processes instead of sys.executable when using the 'spawn'
177 from .spawn import set_executable
262 return ['spawn']
264 methods = ['spawn', 'fork'] if sys.platform == 'darwin' else ['fork', 'spawn']
284 _start_method = 'spawn'
307 _name = 'spawn'
319 'spawn': SpawnContext(),
324 # on macOS since macOS 10.14 (Mojave). Use spawn b
[all...]
/third_party/json/tests/thirdparty/Fuzzer/
H A DFuzzerUtilDarwin.cpp17 #include <spawn.h>
/third_party/node/test/parallel/
H A Dtest-repl-options.js120 const child = cp.spawn(process.execPath, ['--interactive']);
/third_party/musl/libc-test/src/functionalext/supplement/process/
H A Dposix_spawn_file_actions_addopen.c17 #include <spawn.h>
25 * @tc.desc : Set the behavior property of the open file to the spawn file actions object
52 * @tc.desc : Set the behavior property of the open file to the spawn file actions object
77 * @tc.desc : Set the behavior property of the open file to the spawn file actions object
/third_party/python/Tools/c-analyzer/c_parser/preprocessor/
H A Dcommon.py85 compiler.spawn = _spawn
/third_party/python/Lib/distutils/tests/
H A Dtest_bdist_rpm.py11 from distutils.spawn import find_executable
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DParallel.cpp149 void TaskGroup::spawn(std::function<void()> F) { in spawn() function in llvm::parallel::detail::TaskGroup
/third_party/python/Mac/Tools/
H A Dpythonw.c22 #include <spawn.h>
/third_party/rust/crates/regex/examples/
H A Dshootout-regex-dna-cheat.rs47 let future = thread::spawn(move || variant.find_iter(&seq).count()); in main()
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/
H A Dserver.rs85 let handle = thread::spawn(move || { in build()
/third_party/python/Lib/
H A Dpty.py18 __all__ = ["openpty", "fork", "spawn"]
193 def spawn(argv, master_read=_read, stdin_read=_read): function
197 sys.audit('pty.spawn', argv)
/third_party/rust/crates/rustix/
H A Dbuild.rs219 .spawn() in can_compile()
/third_party/node/lib/internal/test_runner/
H A Drunner.js29 const { spawn } = require('child_process');
378 const child = spawn(process.execPath, args, { __proto__: null, signal: t.signal, encoding: 'utf8', env, stdio });
/third_party/node/test/common/
H A Dinspector-helper.js7 const { spawn } = require('child_process');
22 const child = spawn(process.execPath, args);
/third_party/python/Lib/test/
H A Dtest_pty.py297 pty.spawn([sys.executable, '-c', 'print("hi there")'])
300 """These tests don't spawn children or hang."""
395 """Test that spawn resets the tty mode no when _copy returns normally."""
412 self.assertEqual(pty.spawn([]), status_sentinel, "pty.waitpid process status not returned by pty.spawn")
/third_party/node/lib/internal/
H A Dchild_process.js283 const syscall = this.spawnfile ? 'spawn ' + this.spawnfile : 'spawn';
348 ChildProcess.prototype.spawn = function(options) {
389 const err = this._handle.spawn(options);
414 throw errnoException(err, 'spawn');
482 self.emit('spawn');
1103 const result = spawn_sync.spawn(options);
/third_party/musl/src/process/
H A Dposix_spawn.c2 #include <spawn.h>
/third_party/musl/porting/liteos_a/user/src/process/
H A Dposix_spawn.c2 #include <spawn.h>

Completed in 10 milliseconds

12345678910