Home
last modified time | relevance | path

Searched refs:spawn (Results 1 – 25 of 284) sorted by relevance

12345678910>>...12

/external/python/cpython2/Lib/distutils/tests/
Dtest_spawn.py10 from distutils.spawn import _nt_quote_args
11 from distutils.spawn import spawn, find_executable
45 self.assertRaises(DistutilsExecError, spawn, [exe])
57 spawn([exe]) # should work without any error
93 from distutils import spawn
94 with test_support.swap_attr(spawn.os, 'defpath', tmp_dir):
/external/python/cpython3/Lib/distutils/tests/
Dtest_spawn.py10 from distutils.spawn import find_executable
11 from distutils.spawn import _nt_quote_args
12 from distutils.spawn import spawn
45 self.assertRaises(DistutilsExecError, spawn, [exe])
56 spawn([exe]) # should work without any error
/external/skia/bin/
Dsysopen10 def spawn(cmd): function
17 spawn(["open", arg])
21 spawn(["xdg-open", arg])
/external/python/cpython3/Lib/multiprocessing/
Dpopen_spawn_posix.py6 from . import spawn
42 prep_data = spawn.get_preparation_data(process_obj._name)
55 cmd = spawn.get_command_line(tracker_fd=tracker_fd,
58 self.pid = util.spawnv_passfds(spawn.get_executable(),
Dpopen_spawn_win32.py8 from . import spawn
45 prep_data = spawn.get_preparation_data(process_obj._name)
55 cmd = spawn.get_command_line(parent_pid=os.getpid(),
59 python_exe = spawn.get_executable()
Dforkserver.py15 from . import spawn
130 data = spawn.get_preparation_data('ignore')
148 exe = spawn.get_executable()
171 spawn.import_main_path(main_path)
317 code = spawn._main(child_r, parent_sentinel)
Dpopen_forkserver.py9 from . import spawn
42 prep_data = spawn.get_preparation_data(process_obj._name)
/external/python/cpython3/Doc/library/
Dpty.rst42 .. function:: spawn(argv[, master_read[, stdin_read]])
47 spawned behind the pty will eventually terminate, and when it does *spawn*
52 order to force spawn to return before the child process exits an
65 process will quit without any input, *spawn* will then loop forever. If
68 If both callbacks signal EOF then *spawn* will probably never return, unless
74 :func:`spawn` now returns the status value from :func:`os.waitpid`
111 pty.spawn(shell, read)
/external/autotest/client/tests/stress/
Dcontrol22 -c, --cpu N spawn N workers spinning on sqrt()
23 -i, --io N spawn N workers spinning on sync()
24 -m, --vm N spawn N workers spinning on malloc()/free()
29 -d, --hdd N spawn N workers spinning on write()/unlink()
/external/python/cpython2/Lib/distutils/
Darchive_util.py13 from distutils.spawn import spawn
116 spawn(cmd, dry_run=dry_run)
147 spawn(["zip", zipoptions, zip_filename, base_dir],
Dunixccompiler.py111 self.spawn(pp_args)
121 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
135 self.spawn(self.archiver +
146 self.spawn(self.ranlib + [output_filename])
200 self.spawn(linker + ld_args)
Dbcppcompiler.py113 self.spawn (["brcc32", "-fo", obj, src])
135 self.spawn ([self.cc] + compile_opts + pp_opts +
162 self.spawn ([self.lib] + lib_args)
296 self.spawn ([self.linker] + ld_args)
389 self.spawn(pp_args)
Dcmd.py383 def spawn (self, cmd, search_path=1, level=1): member in Command
385 from distutils.spawn import spawn
386 spawn(cmd, search_path, dry_run= self.dry_run)
/external/python/cpython3/Lib/distutils/
Darchive_util.py17 from distutils.spawn import spawn
122 spawn(cmd, dry_run=dry_run)
148 spawn(["zip", zipoptions, zip_filename, base_dir],
Dunixccompiler.py107 self.spawn(pp_args)
117 self.spawn(compiler_so + cc_args + [src, '-o', obj] +
131 self.spawn(self.archiver +
142 self.spawn(self.ranlib + [output_filename])
204 self.spawn(linker + ld_args)
D_msvccompiler.py396 self.spawn([self.rc] + pp_opts + [output_opt, input_opt])
416 self.spawn([self.mc, '-h', h_dir, '-r', rc_dir, src])
420 self.spawn([self.rc, "/fo" + obj, rc_file])
438 self.spawn(args)
464 self.spawn([self.lib] + lib_args)
534 self.spawn([self.linker] + ld_args)
553 def spawn(self, cmd): member in MSVCCompiler
557 return super().spawn(cmd)
Dbcppcompiler.py113 self.spawn (["brcc32", "-fo", obj, src])
135 self.spawn ([self.cc] + compile_opts + pp_opts +
162 self.spawn ([self.lib] + lib_args)
296 self.spawn ([self.linker] + ld_args)
388 self.spawn(pp_args)
Dcmd.py362 def spawn(self, cmd, search_path=1, level=1): member in Command
364 from distutils.spawn import spawn
365 spawn(cmd, search_path, dry_run=self.dry_run)
/external/libcxx/utils/
Dnot.py16 import distutils.spawn
31 prog = distutils.spawn.find_executable(argv[0])
/external/grpc-grpc/src/python/grpcio/
D_spawn_patch.py30 _classic_spawn = ccompiler.CCompiler.spawn
60 ccompiler.CCompiler.spawn = _commandfile_spawn
/external/skia/site/user/modules/
Dparticles.md155 "void spawn(inout Particle p) {",
194 "void spawn(inout Particle p) {",
289 "void spawn(inout Particle p) {",
335 "void spawn(inout Particle p) {",
365 "void spawn(inout Particle p) {",
401 "void spawn(inout Particle p) {",
451 "void spawn(inout Particle p) {",
481 "void spawn(inout Particle p) {",
511 "void spawn(inout Particle p) {",
587 "void spawn(inout Particle p) {",
/external/libcxx/utils/libcxx/sym_check/
Dextract.py13 import distutils.spawn
32 return distutils.spawn.find_executable('nm')
118 return distutils.spawn.find_executable('readelf')
/external/igt-gpu-tools/tools/
Dintel_gpu_time.c45 static pid_t spawn(char **argv) in spawn() function
82 child = spawn(argv+1); in main()
/external/autotest/client/common_lib/
Dpxssh.py18 class pxssh (spawn):
74spawn.__init__(self, None, timeout=timeout, maxread=maxread, searchwindowsize=searchwindowsize, lo…
193 spawn._spawn(self, cmd)
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DParallel.h79 void spawn(std::function<void()> f);
136 TG.spawn([=, &Comp, &TG] { in parallel_quick_sort()
162 TG.spawn([=, &Fn] { std::for_each(Begin, Begin + TaskSize, Fn); }); in parallel_for_each()
177 TG.spawn([=, &Fn] { in parallel_for_each_n()

12345678910>>...12