Home
last modified time | relevance | path

Searched refs:P_NOWAIT (Results 1 – 15 of 15) sorted by relevance

/external/mesa3d/scons/
Dfixes.py15 ret = old_spawnve(os.P_NOWAIT, file, args, env)
/external/selinux/gui/
Dsystem-config-selinux.py127 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/
Dbash_shared_mapping.py36 pid[i] = os.spawnv(os.P_NOWAIT, usemem, args)
/external/mksh/src/
Dos2.c433 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/
Dshell.py306 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/
Dshell.py306 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/
Dos.py525 P_NOWAIT = P_NOWAITO = 1 variable
545 if mode == P_NOWAIT:
/external/python/cpython3/Lib/test/
Dtest_os.py2800 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/
Dos.py837 P_NOWAIT = P_NOWAITO = 1 variable
863 if mode == P_NOWAIT:
/external/python/cpython2/Doc/library/
Dsubprocess.rst774 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)
Dos.rst2038 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/
Dsubprocess.rst1291 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)
Dos.rst3839 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/
DPyShell.py408 self.rpcpid = os.spawnv(os.P_NOWAIT, sys.executable, args)
/external/python/cpython2/Modules/
Dposixmodule.c4935 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()