Searched refs:P_WAIT (Results 1 – 17 of 17) sorted by relevance
/external/mesa3d/scons/ |
D | fixes.py | 14 if mode == os.P_WAIT: 20 if mode == os.P_WAIT:
|
/external/python/cpython2/Lib/distutils/ |
D | spawn.py | 73 rc = os.spawnv(os.P_WAIT, executable, cmd) 96 rc = os.spawnv(os.P_WAIT, executable, cmd)
|
/external/python/cpython3/Lib/distutils/ |
D | spawn.py | 69 rc = os.spawnv(os.P_WAIT, executable, cmd)
|
/external/python/cpython2/Lib/test/ |
D | test_os.py | 961 exitcode = spawn(os.P_WAIT, args[0], args, newenv) 971 exitcode = spawn(os.P_WAIT, args[0], args, newenv) 981 exitcode = spawn(os.P_WAIT, args[0], args, newenv) 997 exitcode = spawn(os.P_WAIT, args[0], args, newenv)
|
D | test_tempfile.py | 432 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2463 exitcode = os.spawnl(os.P_WAIT, args[0], *args) 2469 exitcode = os.spawnle(os.P_WAIT, args[0], *args, self.env) 2475 exitcode = os.spawnlp(os.P_WAIT, args[0], *args) 2481 exitcode = os.spawnlpe(os.P_WAIT, args[0], *args, self.env) 2487 exitcode = os.spawnv(os.P_WAIT, args[0], args) 2493 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env) 2499 exitcode = os.spawnvp(os.P_WAIT, args[0], args) 2505 exitcode = os.spawnvpe(os.P_WAIT, args[0], args, self.env) 2525 exitcode = os.spawnve(os.P_WAIT, args[0], args, self.env) 2563 exitcode = spawn(os.P_WAIT, args[0], args, newenv) [all …]
|
D | test_tempfile.py | 483 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
|
/external/antlr/runtime/Python3/ |
D | ez_setup.py | 47 return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
|
/external/python/cpython2/Lib/ |
D | os.py | 524 P_WAIT = 0 variable
|
/external/python/cpython3/Lib/ |
D | os.py | 835 P_WAIT = 0 variable
|
/external/python/cpython2/Doc/library/ |
D | subprocess.rst | 780 P_WAIT example:: 782 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
|
D | os.rst | 2039 process; if *mode* is :const:`P_WAIT`, returns the process's exit code if it 2076 os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null') 2079 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) 2102 .. data:: P_WAIT
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 1203 P_WAIT example:: 1205 retcode = os.spawnlp(os.P_WAIT, "/bin/mycmd", "mycmd", "myarg")
|
D | os.rst | 3438 process; if *mode* is :const:`P_WAIT`, returns the process's exit code if it 3475 os.spawnlp(os.P_WAIT, 'cp', 'cp', 'index.html', '/dev/null') 3478 os.spawnvpe(os.P_WAIT, 'cp', L, os.environ) 3500 .. data:: P_WAIT
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 9431 if (ins(d, "P_WAIT", (long)P_WAIT)) return -1; in all_ins()
|
/external/python/cpython2/Misc/ |
D | HISTORY | 6165 an os.spawn function with P_WAIT will no longer block all Python threads
|
/external/python/cpython3/Misc/ |
D | HISTORY | 23549 an os.spawn function with P_WAIT will no longer block all Python threads
|