Searched defs:spawn (Results 1 - 14 of 14) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
H A Dspawn.py1 """distutils.spawn
3 Provides the 'spawn()' function, a front-end to various platform-
17 def spawn(cmd, search_path=1, verbose=0, dry_run=0): function
41 "don't know how to spawn programs on platform '%s'" % os.name
67 # spawn for NT requires a full path to the .exe
169 # the file exists, we have a shot at spawn working
H A Darchive_util.py13 from distutils.spawn import spawn namespace
116 spawn(cmd, dry_run=dry_run)
147 spawn(["zip", zipoptions, zip_filename, base_dir],
H A Dutil.py12 from distutils.spawn import spawn namespace
518 spawn(cmd, dry_run=dry_run)
H A Dcmd.py383 def spawn (self, cmd, search_path=1, level=1): member in class:Command
385 from distutils.spawn import spawn namespace
386 spawn(cmd, search_path, dry_run= self.dry_run)
H A Dccompiler.py14 from distutils.spawn import spawn namespace
924 def spawn(self, cmd): member in class:CCompiler
925 spawn(cmd, dry_run=self.dry_run)
1097 # shell at all costs when we spawn the command!
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
H A Dtest_bdist.py13 from distutils.spawn import find_executable
14 from distutils import spawn namespace
H A Dtest_spawn.py1 """Tests for distutils.spawn."""
7 from distutils.spawn import _nt_quote_args
8 from distutils.spawn import spawn, find_executable namespace
42 self.assertRaises(DistutilsExecError, spawn, [exe])
54 spawn([exe]) # should work without any error
H A Dtest_bdist_rpm.py14 from distutils.spawn import find_executable
15 from distutils import spawn namespace
H A Dtest_archive_util.py13 from distutils.spawn import find_executable, spawn namespace
125 spawn(tar_cmd)
126 spawn(gzip_cmd)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dpty.py13 __all__ = ["openpty","fork","spawn"]
155 def spawn(argv, master_read=_read, stdin_read=_read): function
H A Dshutil.py401 from distutils.spawn import spawn namespace
403 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
H A Dupload.py15 from distutils.spawn import spawn namespace
77 spawn(gpg_args,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Dshutil.py406 from distutils.spawn import spawn namespace
408 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_shutil.py11 from distutils.spawn import find_executable, spawn namespace
427 spawn(tar_cmd)
428 spawn(gzip_cmd)

Completed in 195 milliseconds