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

1 2 3 4 5 6 7

  /external/bison/lib/
spawnattr_destroy.c 20 #include <spawn.h>
22 /* Initialize data structure for file attribute for 'spawn' call. */
spawn_faction_destroy.c 20 #include <spawn.h>
24 /* Initialize data structure for file attribute for 'spawn' call. */
spawnattr_init.c 20 #include <spawn.h>
24 /* Initialize data structure for file attribute for 'spawn' call. */
spawnattr_setsigmask.c 20 #include <spawn.h>
spawnattr_setflags.c 20 #include <spawn.h>
spawnp.c 20 #include <spawn.h>
24 /* Spawn a new process executing FILE with the attributes describes in *ATTRP.
spawn_faction_init.c 20 #include <spawn.h>
49 /* Initialize data structure for file attribute for 'spawn' call. */
spawn_faction_addclose.c 20 #include <spawn.h>
34 'close' for the given file descriptor during the 'spawn' call. */
spawn_faction_adddup2.c 20 #include <spawn.h>
34 'dup2' for the given file descriptors during the 'spawn' call. */
spawn_faction_addopen.c 20 #include <spawn.h>
34 'open' for the given file during the 'spawn' call. */
  /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
  /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
  /external/ltrace/testsuite/ltrace.minor/
attach-process.exp 27 spawn $bin
attach-process-dlopen.exp 26 spawn [ltraceCompile exe -ldl [ltraceSource c {
  /external/lldb/test/pexpect-2.4/examples/
python.py 7 # c = pexpect.spawn ('/usr/bin/env python ./python.py')
10 c = pexpect.spawn ('/usr/bin/env python')
ssh_tunnel.py 34 ssh_tunnel = pexpect.spawn (tunnel_command % globals())
47 ps = pexpect.spawn ('ps')
df.py 12 child = pexpect.spawn ('df')
ftp.py 12 child = pexpect.spawn('ftp ftp.openbsd.org')
sshls.py 16 This returns a pexpect.spawn object. This handles the case when you try to
21 child = pexpect.spawn('ssh -l %s %s %s'%(user, host, command))
uptime.py 32 p = pexpect.spawn ('uptime')
  /external/chromium_org/third_party/pexpect/
fdpexpect.py 28 class fdspawn (spawn):
30 """This is like pexpect.spawn but allows you to supply your own open file
40 ### TODO: Add better handling of trying to use fdspawn in place of spawn
41 ### TODO: (overload to allow fdspawn to also handle commands as spawn does.
47 raise ExceptionPexpect ('The fd argument is not an int. If this is a command string then maybe you want to use pexpect.spawn.')
56 spawn.__init__(self, None, args, timeout, maxread, searchwindowsize, logfile)
  /external/lldb/test/pexpect-2.4/
fdpexpect.py 12 class fdspawn (spawn):
14 """This is like pexpect.spawn but allows you to supply your own open file
24 ### TODO: Add better handling of trying to use fdspawn in place of spawn
25 ### TODO: (overload to allow fdspawn to also handle commands as spawn does.
31 raise ExceptionPexpect ('The fd argument is not an int. If this is a command string then maybe you want to use pexpect.spawn.')
40 spawn.__init__(self, None, args, timeout, maxread, searchwindowsize, logfile)
  /external/lldb/test/functionalities/command_regex/
TestCommandRegex.py 21 child = pexpect.spawn('%s %s' % (self.lldbHere, self.lldbOption))
  /external/lldb/test/functionalities/connect_remote/
TestConnectRemote.py 19 fakeserver = pexpect.spawn('./EchoServer.py')
  /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)

Completed in 1830 milliseconds

1 2 3 4 5 6 7