Searched refs:spawnlp (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/ |
D | os.py | 630 def spawnlp(mode, file, *args): function
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2024 spawnlp(mode, file, ...) 2053 The variants which include a second "p" near the end (:func:`spawnlp`, 2067 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause 2072 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are 2076 os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null') 2081 Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
|
D | subprocess.rst | 776 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") 782 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 4911 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0); in _PyPopen()
|