/third_party/node/test/pummel/ |
H A D | test-policy-integrity-worker-commonjs.js | 19 const { spawnSync, spawn } = require('child_process'); 171 const child = spawn(...spawnArgs);
|
H A D | test-policy-integrity-worker-module.js | 19 const { spawnSync, spawn } = require('child_process'); 171 const child = spawn(...spawnArgs);
|
H A D | test-policy-integrity-dep.js | 19 const { spawnSync, spawn } = require('child_process'); 153 const child = spawn(...spawnArgs);
|
H A D | test-policy-integrity-parent-commonjs.js | 19 const { spawnSync, spawn } = require('child_process'); 154 const child = spawn(...spawnArgs);
|
H A D | test-policy-integrity-parent-module.js | 19 const { spawnSync, spawn } = require('child_process'); 154 const child = spawn(...spawnArgs);
|
H A D | test-policy-integrity-parent-no-package-json.js | 19 const { spawnSync, spawn } = require('child_process'); 154 const child = spawn(...spawnArgs);
|
H A D | test-policy-integrity-worker-no-package-json.js | 19 const { spawnSync, spawn } = require('child_process'); 171 const child = spawn(...spawnArgs);
|
/third_party/python/Lib/multiprocessing/ |
H A D | context.py | 149 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 D | FuzzerUtilDarwin.cpp | 17 #include <spawn.h>
|
/third_party/node/test/parallel/ |
H A D | test-repl-options.js | 120 const child = cp.spawn(process.execPath, ['--interactive']);
|
/third_party/musl/libc-test/src/functionalext/supplement/process/ |
H A D | posix_spawn_file_actions_addopen.c | 17 #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 D | common.py | 85 compiler.spawn = _spawn
|
/third_party/python/Lib/distutils/tests/ |
H A D | test_bdist_rpm.py | 11 from distutils.spawn import find_executable
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | Parallel.cpp | 149 void TaskGroup::spawn(std::function<void()> F) { in spawn() function in llvm::parallel::detail::TaskGroup
|
/third_party/python/Mac/Tools/ |
H A D | pythonw.c | 22 #include <spawn.h>
|
/third_party/rust/crates/regex/examples/ |
H A D | shootout-regex-dna-cheat.rs | 47 let future = thread::spawn(move || variant.find_iter(&seq).count()); in main()
|
/third_party/rust/crates/rust-openssl/openssl/src/ssl/test/ |
H A D | server.rs | 85 let handle = thread::spawn(move || { in build()
|
/third_party/python/Lib/ |
H A D | pty.py | 18 __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 D | build.rs | 219 .spawn() in can_compile()
|
/third_party/node/lib/internal/test_runner/ |
H A D | runner.js | 29 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 D | inspector-helper.js | 7 const { spawn } = require('child_process'); 22 const child = spawn(process.execPath, args);
|
/third_party/python/Lib/test/ |
H A D | test_pty.py | 297 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 D | child_process.js | 283 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 D | posix_spawn.c | 2 #include <spawn.h>
|
/third_party/musl/porting/liteos_a/user/src/process/ |
H A D | posix_spawn.c | 2 #include <spawn.h>
|