/external/python/cpython2/Lib/distutils/tests/ |
D | test_spawn.py | 10 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/ |
D | test_spawn.py | 10 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/ |
D | sysopen | 10 def spawn(cmd): function 17 spawn(["open", arg]) 21 spawn(["xdg-open", arg])
|
/external/python/cpython3/Lib/multiprocessing/ |
D | popen_spawn_posix.py | 6 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(),
|
D | popen_spawn_win32.py | 8 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()
|
D | forkserver.py | 15 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)
|
D | popen_forkserver.py | 9 from . import spawn 42 prep_data = spawn.get_preparation_data(process_obj._name)
|
/external/python/cpython3/Doc/library/ |
D | pty.rst | 42 .. 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/ |
D | control | 22 -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/ |
D | archive_util.py | 13 from distutils.spawn import spawn 116 spawn(cmd, dry_run=dry_run) 147 spawn(["zip", zipoptions, zip_filename, base_dir],
|
D | unixccompiler.py | 111 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)
|
D | bcppcompiler.py | 113 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)
|
D | cmd.py | 383 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/ |
D | archive_util.py | 17 from distutils.spawn import spawn 122 spawn(cmd, dry_run=dry_run) 148 spawn(["zip", zipoptions, zip_filename, base_dir],
|
D | unixccompiler.py | 107 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.py | 396 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)
|
D | bcppcompiler.py | 113 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)
|
D | cmd.py | 362 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/ |
D | not.py | 16 import distutils.spawn 31 prog = distutils.spawn.find_executable(argv[0])
|
/external/grpc-grpc/src/python/grpcio/ |
D | _spawn_patch.py | 30 _classic_spawn = ccompiler.CCompiler.spawn 60 ccompiler.CCompiler.spawn = _commandfile_spawn
|
/external/skia/site/user/modules/ |
D | particles.md | 155 "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/ |
D | extract.py | 13 import distutils.spawn 32 return distutils.spawn.find_executable('nm') 118 return distutils.spawn.find_executable('readelf')
|
/external/igt-gpu-tools/tools/ |
D | intel_gpu_time.c | 45 static pid_t spawn(char **argv) in spawn() function 82 child = spawn(argv+1); in main()
|
/external/autotest/client/common_lib/ |
D | pxssh.py | 18 class pxssh (spawn): 74 …spawn.__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/ |
D | Parallel.h | 79 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()
|