Home
last modified time | relevance | path

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

12345678910

/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/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
46 prep_data = spawn.get_preparation_data(process_obj._name)
52 cmd = spawn.get_command_line(parent_pid=os.getpid(),
56 python_exe = spawn.get_executable()
Dforkserver.py15 from . import spawn
111 data = spawn.get_preparation_data('ignore')
129 exe = spawn.get_executable()
152 spawn.import_main_path(main_path)
297 code = spawn._main(child_r)
Dpopen_forkserver.py9 from . import spawn
42 prep_data = spawn.get_preparation_data(process_obj._name)
/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)
Dmsvc9compiler.py505 self.spawn([self.rc] + pp_opts +
526 self.spawn([self.mc] +
531 self.spawn([self.rc] +
544 self.spawn([self.cc] + compile_opts + pp_opts +
571 self.spawn([self.lib] + lib_args)
652 self.spawn([self.linker] + ld_args)
666 self.spawn(['mt.exe', '-nologo', '-manifest',
/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/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],
D_msvccompiler.py382 self.spawn([self.rc] + pp_opts + [output_opt, input_opt])
402 self.spawn([self.mc, '-h', h_dir, '-r', rc_dir, src])
406 self.spawn([self.rc, "/fo" + obj, rc_file])
424 self.spawn(args)
450 self.spawn([self.lib] + lib_args)
520 self.spawn([self.linker] + ld_args)
539 def spawn(self, cmd): member in MSVCCompiler
543 return super().spawn(cmd)
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)
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)
Dmsvc9compiler.py493 self.spawn([self.rc] + pp_opts +
514 self.spawn([self.mc] +
519 self.spawn([self.rc] +
532 self.spawn([self.cc] + compile_opts + pp_opts +
559 self.spawn([self.lib] + lib_args)
640 self.spawn([self.linker] + ld_args)
654 self.spawn(['mt.exe', '-nologo', '-manifest',
/external/libcxx/utils/
Dnot.py16 import distutils.spawn
31 prog = distutils.spawn.find_executable(argv[0])
/external/autotest/scheduler/
Dluciferlib.py118 drone.spawn(_ENV, args,
164 drone.spawn(_ENV, args,
342 def spawn(self, path, args, output_file): member in Drone
389 def spawn(self, path, args, output_file): member in LocalDrone
412 def spawn(self, path, args, output_file): member in RemoteDrone
/external/grpc-grpc/src/python/grpcio/
D_spawn_patch.py30 _classic_spawn = ccompiler.CCompiler.spawn
60 ccompiler.CCompiler.spawn = _commandfile_spawn
/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/perfetto/ui/
Dbs-config.js21 const { spawn } = require('child_process');
57 const ninja = spawn(ninjaPath, ['-C', ninjaOutDir, 'ui']);
/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