Searched refs:P_NOWAIT (Results 1 – 15 of 15) sorted by relevance
/external/mesa3d/scons/ |
D | fixes.py | 15 ret = old_spawnve(os.P_NOWAIT, file, args, env)
|
/external/selinux/gui/ |
D | system-config-selinux.py | 127 os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/semanagegui.py") 130 os.spawnl(os.P_NOWAIT, "/usr/bin/seaudit")
|
/external/autotest/client/tests/bash_shared_mapping/ |
D | bash_shared_mapping.py | 36 pid[i] = os.spawnv(os.P_NOWAIT, usemem, args)
|
/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 | 525 P_NOWAIT = P_NOWAITO = 1 variable 545 if mode == P_NOWAIT:
|
/external/python/cpython3/Lib/test/ |
D | test_os.py | 2800 pid = os.spawnv(os.P_NOWAIT, sys.executable, args) 2939 pid = os.spawnv(os.P_NOWAIT, args[0], args) 2952 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0]) 2953 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0], '') 2958 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], {}) 2959 self.assertRaises(ValueError, os.spawnle, os.P_NOWAIT, args[0], '', {}) 2964 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ()) 2965 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], []) 2966 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ('',)) 2967 self.assertRaises(ValueError, os.spawnv, os.P_NOWAIT, args[0], ['']) [all …]
|
/external/python/cpython3/Lib/ |
D | os.py | 837 P_NOWAIT = P_NOWAITO = 1 variable 863 if mode == P_NOWAIT:
|
/external/python/cpython2/Doc/library/ |
D | subprocess.rst | 774 P_NOWAIT example:: 776 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") 788 os.spawnvp(os.P_NOWAIT, path, args) 794 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
|
D | os.rst | 2038 If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new 2089 .. data:: P_NOWAIT 2120 is similar to :const:`P_NOWAIT`, but the new process is detached from the 2235 functions called with :const:`P_NOWAIT` return suitable process handles.
|
/external/python/cpython3/Doc/library/ |
D | subprocess.rst | 1291 P_NOWAIT example:: 1293 pid = os.spawnlp(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg") 1305 os.spawnvp(os.P_NOWAIT, path, args) 1311 os.spawnlpe(os.P_NOWAIT, "/bin/mycmd", "mycmd", "myarg", env)
|
D | os.rst | 3839 If *mode* is :const:`P_NOWAIT`, this function returns the process id of the new 3896 .. data:: P_NOWAIT 3923 is similar to :const:`P_NOWAIT`, but the new process is detached from the 4132 functions called with :const:`P_NOWAIT` return suitable process handles.
|
/external/python/cpython2/Lib/idlelib/ |
D | PyShell.py | 408 self.rpcpid = os.spawnv(os.P_NOWAIT, sys.executable, args)
|
/external/python/cpython2/Modules/ |
D | posixmodule.c | 4935 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0); in _PyPopen() 9432 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1; in all_ins()
|