Home
last modified time | relevance | path

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

/external/mesa3d/scons/
Dfixes.py15 ret = old_spawnve(os.P_NOWAIT, file, args, env)
/external/selinux/gui/
Dsystem-config-selinux.py128 os.spawnl(os.P_NOWAIT, "/usr/share/system-config-selinux/semanagegui.py")
131 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/bison/lib/
Dspawn-pipe.c197 child = spawnvpe (P_NOWAIT, prog_path, (const char **) prog_argv, in create_pipe()
205 child = spawnvpe (P_NOWAIT, prog_argv[0], (const char **) prog_argv, in create_pipe()
/external/python/cpython2/Lib/
Dos.py525 P_NOWAIT = P_NOWAITO = 1 variable
545 if mode == P_NOWAIT:
/external/mksh/src/
Dos2.c472 pid = spawnve(P_NOWAIT, exec_name, argv, envp); in execve()
/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/cpython2/Lib/idlelib/
DPyShell.py408 self.rpcpid = os.spawnv(os.P_NOWAIT, sys.executable, args)
/external/python/cpython2/Modules/
Dposixmodule.c4911 pipe_pid = spawnlp(P_NOWAIT, shell, shell, opt, cmdstring, (char *)0); in _PyPopen()
9398 if (ins(d, "P_NOWAIT", (long)P_NOWAIT)) return -1; in all_ins()