Searched refs:spawnvpe (Results 1 – 4 of 4) sorted by relevance
/external/bison/lib/ |
D | spawn-pipe.c | 197 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/ |
D | os.py | 589 def spawnvpe(mode, file, args, env): function 649 return spawnvpe(mode, file, args[:-1], env)
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2029 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/ |
D | posixmodule.c | 3799 spawnval = spawnvpe(mode, path, argvlist, envlist); in posix_spawnvpe()
|