Home
last modified time | relevance | path

Searched refs:spawnvpe (Results 1 – 4 of 4) sorted by relevance

/external/bison/lib/
Dspawn-pipe.c197 child = spawnvpe (P_NOWAIT, prog_path, (const char **) prog_argv, in create_pipe()
205 child = spawnvpe (P_NOWAIT, prog_argv[0], (const char **) prog_argv, in create_pipe()
/external/python/cpython2/Lib/
Dos.py589 def spawnvpe(mode, file, args, env): function
649 return spawnvpe(mode, file, args[:-1], env)
/external/python/cpython2/Doc/library/
Dos.rst2029 spawnvpe(mode, file, args, env)
2054 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the
2063 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe`
2072 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are
2079 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ)
2082 and :func:`spawnvpe` are not available on Windows. :func:`spawnle` and
/external/python/cpython2/Modules/
Dposixmodule.c3799 spawnval = spawnvpe(mode, path, argvlist, envlist); in posix_spawnvpe()