Home
last modified time | relevance | path

Searched refs:spawnv (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Lib/distutils/
Dspawn.py73 rc = os.spawnv(os.P_WAIT, executable, cmd)
96 rc = os.spawnv(os.P_WAIT, executable, cmd)
/external/autotest/client/tests/bash_shared_mapping/
Dbash_shared_mapping.py36 pid[i] = os.spawnv(os.P_NOWAIT, usemem, args)
/external/python/cpython3/Lib/distutils/
Dspawn.py69 rc = os.spawnv(os.P_WAIT, executable, cmd)
/external/python/cpython2/Lib/
Dos.py558 def spawnv(mode, file, args): function
610 return spawnv(mode, file, args)
/external/python/cpython3/Lib/
Dos.py875 def spawnv(mode, file, args): function
931 return spawnv(mode, file, args)
/external/python/cpython2/Doc/library/
Dpopen2.rst29 directly to the program without shell intervention (as with :func:`os.spawnv`).
Dos.rst529 (as with :func:`os.spawnv`). If *cmd* is a string it will be passed to the shell
2026 spawnv(mode, path, args)
2059 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the
2067 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
/external/python/cpython3/Lib/test/
Dtest_os.py2426 pid = os.spawnv(os.P_NOWAIT, FakePath(args[0]), args)
2487 exitcode = os.spawnv(os.P_WAIT, args[0], args)
2511 pid = os.spawnv(os.P_NOWAIT, args[0], args)
2543 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ())
2544 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], [])
2545 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ('',))
2546 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], [''])
/external/python/cpython2/PC/os2emx/
DREADME.os2emx533 17. os.spawnv() and os.spawnve() expose EMX's library routines rather
573 of trying. os.spawnv() _does_ work. PythonPM passes all regression tests
/external/python/cpython2/Lib/idlelib/
DPyShell.py408 self.rpcpid = os.spawnv(os.P_NOWAIT, sys.executable, args)
DChangeLog515 module defines 'spawnv' now, so we check for 'fork' first.
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst431 Fix crash in os.spawnv() with no elements in args
D3.5.3rc1.rst557 Fix crash in os.spawnv() with no elements in args
/external/python/cpython3/Doc/library/
Dos.rst3425 spawnv(mode, path, args)
3458 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the
3466 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
/external/python/cpython3/Lib/idlelib/
DChangeLog515 module defines 'spawnv' now, so we check for 'fork' first.
/external/python/cpython2/Modules/
Dposixmodule.c3433 spawnval = spawnv(mode, path, argvlist); in posix_spawnv()
/external/python/cpython2/Misc/
DHISTORY10664 - On Windows, support spawnv() and associated P_* symbols.
/external/python/cpython3/Misc/
DHISTORY28043 - On Windows, support spawnv() and associated P_* symbols.