Searched refs:spawnve (Results 1 – 4 of 4) sorted by relevance
/third_party/mksh/ |
D | os2.c | 460 pid = spawnve(P_NOWAIT, exec_name, argv, envp); in execve() 471 pid = spawnve(P_NOWAIT, exec_name, rsp_argv, envp); in execve()
|
/third_party/python/Lib/ |
D | os.py | 881 def spawnve(mode, file, args, env): function 939 return spawnve(mode, file, args[:-1], env)
|
/third_party/python/Lib/test/ |
D | test_os.py | 3066 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env) 3091 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env) 3117 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], (), {}) 3118 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [], {}) 3119 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], ('',), {}) 3120 self.assertRaises(ValueError, os.spawnve, os.P_NOWAIT, args[0], [''], {}) 3170 self._test_invalid_env(os.spawnve)
|
/third_party/python/Doc/library/ |
D | os.rst | 4058 spawnve(mode, path, args, env) 4093 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the 4097 For :func:`spawnle`, :func:`spawnlpe`, :func:`spawnve`, and :func:`spawnvpe` 4119 :func:`spawnve` are not thread-safe on Windows; we advise you to use the
|