Searched refs:spawnve (Results 1 – 12 of 12) sorted by relevance
/external/mesa3d/scons/ |
D | fixes.py | 7 from os import spawnve as old_spawnve 25 os.spawnve = new_spawnve
|
/external/mksh/src/ |
D | os2.c | 433 pid = spawnve(P_NOWAIT, exec_name, argv, envp); in execve() 444 pid = spawnve(P_NOWAIT, exec_name, rsp_argv, envp); in execve()
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/ |
D | shell.py | 306 pid = _os.spawnve(_os.P_NOWAIT, argv[0], argv, env) 360 pid = _os.spawnve(_os.P_NOWAIT, argv[0], argv, env)
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/ |
D | shell.py | 306 pid = _os.spawnve(_os.P_NOWAIT, argv[0], argv, env) 360 pid = _os.spawnve(_os.P_NOWAIT, argv[0], argv, env)
|
/external/python/cpython2/Lib/ |
D | os.py | 567 def spawnve(mode, file, args, env): function 621 return spawnve(mode, file, args[:-1], env)
|
/external/python/cpython3/Lib/ |
D | os.py | 881 def spawnve(mode, file, args, env): function 939 return spawnve(mode, file, args[:-1], env)
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2921 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env) 2946 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env) 2972 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], (), {}) 2973 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [], {}) 2974 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], ('',), {}) 2975 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [''], {}) 3025 self._test_invalid_env(os.spawnve)
|
/external/python/cpython2/Lib/test/ |
D | test_os.py | 1002 self._test_invalid_env(os.spawnve)
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2027 spawnve(mode, path, args, env) 2059 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 2063 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 2083 :func:`spawnve` are not thread-safe on Windows; we advise you to use the
|
/external/python/cpython2/PC/os2emx/ |
D | README.os2emx | 533 17. os.spawnv() and os.spawnve() expose EMX's library routines rather
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 3828 spawnve(mode, path, args, env) 3863 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 3867 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 3889 :func:`spawnve` are not thread-safe on Windows; we advise you to use the
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 3584 spawnval = spawnve(mode, path, argvlist, envlist); in posix_spawnve()
|