Searched refs:spawnlp (Results 1 – 8 of 8) sorted by relevance
/external/python/cpython2/Lib/ |
D | os.py | 630 def spawnlp(mode, file, *args): function
|
/external/python/cpython3/Lib/ |
D | os.py | 948 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/cpython3/Doc/library/ |
D | os.rst | 3825 spawnlp(mode, file, ...) 3857 The variants which include a second "p" near the end (:func:`spawnlp`, 3871 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause 3876 As an example, the following calls to :func:`spawnlp` and :func:`spawnvpe` are 3880 os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null') 3887 .. availability:: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
|
D | subprocess.rst | 1293 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") 1299 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2899 exitcode = os.spawnlp(os.P_WAIT, args[0], *args)
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 4935 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0); in _PyPopen()
|