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

1 2 3 4

  /external/libcxx/utils/not/
not.py 7 import distutils.spawn namespace
22 prog = distutils.spawn.find_executable(argv[0])
  /external/ImageMagick/MagickCore/
delegate.h 41 spawn, member in struct:_DelegateInfo
  /external/libcxx/utils/sym_check/sym_check/
extract.py 5 import distutils.spawn namespace
21 return distutils.spawn.find_executable('nm')
104 return distutils.spawn.find_executable('readelf')
util.py 2 import distutils.spawn namespace
85 _cppfilt_exe = distutils.spawn.find_executable('c++filt')
  /prebuilts/gdb/darwin-x86/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],
  /prebuilts/gdb/linux-x86/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],
  /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
  /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
  /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
  /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
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/s3/
test_pool.py 34 def spawn(function, *args, **kwargs): function
37 gevent.greenlet.Greenlet.spawn.
79 spawn(put_object, bucket, name)
90 spawn(get_object, bucket, name)
134 self.thread = spawn(self.run)
223 spawn(read_big_object, s3, bucket, big_name, 20)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
161 def spawn(argv, master_read=_read, stdin_read=_read): function
  /prebuilts/gdb/linux-x86/lib/python2.7/
pty.py 13 __all__ = ["openpty","fork","spawn"]
161 def spawn(argv, master_read=_read, stdin_read=_read): function
  /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
  /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
  /external/autotest/client/bin/
prespawner.py 16 # argv (as a tuple); see spawn() below. Once we receive these, start
55 def spawn(self, args, env_additions=None): member in class:Prespawner
75 Starts a thread to pre-spawn autotests.
96 Stops the pre-spawn thread gracefully.
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
posix_platform_backend.py 5 import distutils.spawn namespace
90 return bool(distutils.spawn.find_executable(application))
103 application = distutils.spawn.find_executable(application)
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/_setup/py3/
shell.py 97 """ Pipe spawn """
176 """ File Pipe spawn """
235 def spawn(*argv, **kwargs): function
236 """ Spawn a process """
328 # Based on distutils.spawn.find_executable.
346 # the file exists, we have a shot at spawn working
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/_setup/py3/
shell.py 97 """ Pipe spawn """
176 """ File Pipe spawn """
235 def spawn(*argv, **kwargs): function
236 """ Spawn a process """
328 # Based on distutils.spawn.find_executable.
346 # the file exists, we have a shot at spawn working
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/values/
SpawnShapeValue.java 9 /** Encapsulate the formulas to spawn a particle on a shape.
27 public final Vector3 spawn(Vector3 vector, float percent){ method in class:SpawnShapeValue
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
upload.py 15 from distutils.spawn import spawn namespace
77 spawn(gpg_args,

Completed in 666 milliseconds

1 2 3 4