HomeSort by relevance Sort by last modified time
    Searched defs:spawn (Results 1 - 25 of 37) sorted by null

1 2

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
spawn.py 1 """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
195 # the file exists, we have a shot at spawn working
archive_util.py 13 from distutils.spawn import spawn namespace
116 spawn(cmd, dry_run=dry_run)
147 spawn(["zip", zipoptions, zip_filename, base_dir],
util.py 12 from distutils.spawn import spawn namespace
450 spawn(cmd, dry_run=dry_run)
cmd.py 383 def spawn (self, cmd, search_path=1, level=1): member in class:Command
384 """Spawn an external command respecting dry-run flag."""
385 from distutils.spawn import spawn namespace
386 spawn(cmd, search_path, dry_run= self.dry_run)
ccompiler.py 14 from distutils.spawn import spawn namespace
874 def spawn(self, cmd): member in class:CCompiler
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_spawn.py 1 """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
test_bdist_rpm.py 14 from distutils.spawn import find_executable
15 from distutils import spawn namespace
test_archive_util.py 15 from distutils.spawn import find_executable, spawn namespace
142 spawn(tar_cmd)
143 spawn(gzip_cmd)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
spawn.py 1 """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
195 # the file exists, we have a shot at spawn working
archive_util.py 13 from distutils.spawn import spawn namespace
116 spawn(cmd, dry_run=dry_run)
147 spawn(["zip", zipoptions, zip_filename, base_dir],
util.py 12 from distutils.spawn import spawn namespace
450 spawn(cmd, dry_run=dry_run)
cmd.py 383 def spawn (self, cmd, search_path=1, level=1): member in class:Command
384 """Spawn an external command respecting dry-run flag."""
385 from distutils.spawn import spawn namespace
386 spawn(cmd, search_path, dry_run= self.dry_run)
ccompiler.py 14 from distutils.spawn import spawn namespace
874 def spawn(self, cmd): member in class:CCompiler
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_spawn.py 1 """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
test_bdist_rpm.py 14 from distutils.spawn import find_executable
15 from distutils import spawn namespace
test_archive_util.py 15 from distutils.spawn import find_executable, spawn namespace
142 spawn(tar_cmd)
143 spawn(gzip_cmd)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
161 def spawn(argv, master_read=_read, stdin_read=_read): function
shutil.py 405 from distutils.spawn import spawn namespace
407 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
161 def spawn(argv, master_read=_read, stdin_read=_read): function
shutil.py 405 from distutils.spawn import spawn namespace
407 spawn(["zip", zipoptions, zip_filename, base_dir], dry_run=dry_run)
  /external/chromium_org/tools/telemetry/telemetry/core/platform/
posix_platform_backend.py 5 import distutils.spawn namespace
72 return bool(distutils.spawn.find_executable(application))
85 application = distutils.spawn.find_executable(application)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 15 from distutils.spawn import spawn namespace
77 spawn(gpg_args,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
upload.py 15 from distutils.spawn import spawn namespace
77 spawn(gpg_args,
  /external/chromium_org/third_party/pexpect/
pexpect.py 13 run() and the class, spawn. The spawn class is more powerful. The run()
14 function is simpler than spawn, and is good for quickly calling program. When
22 The spawn class is the more powerful interface to the Pexpect system. You can
23 use this to spawn a child program then interact with it by sending input and
28 child = pexpect.spawn('scp foo user@example.com:.')
91 __all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'run', 'which',
165 The run() function can often be used instead of creating a spawn instance.
166 For example, the following code uses spawn::
169 child = spawn('scp foo user@example.com:.'
277 class spawn(object): class in inherits:object
    [all...]
  /external/lldb/test/pexpect-2.4/
pexpect.py 13 spawn. You can call the run() function to execute a command and return the
20 The more powerful interface is the spawn class. You can use this to spawn an
26 child = pexpect.spawn('scp foo myname@host.example.com:.')
90 __all__ = ['ExceptionPexpect', 'EOF', 'TIMEOUT', 'spawn', 'run', 'which',
158 The run() function can often be used instead of creating a spawn instance.
159 For example, the following code uses spawn::
162 child = spawn('scp foo myname@host.example.com:.')
211 access the child spawn object or any other variable defined in run()
220 child = spawn(command, maxread=2000, logfile=logfile, cwd=cwd, env=env
263 class spawn (object): class in inherits:object
    [all...]

Completed in 9692 milliseconds

1 2