Home
last modified time | relevance | path

Searched refs:spawnl (Results 1 – 11 of 11) sorted by relevance

/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/antlr/runtime/Python3/
Dez_setup.py47 return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
/external/python/cpython2/Doc/library/
Dos.rst2022 .. function:: spawnl(mode, path, ...)
2044 The "l" and "v" variants of the :func:`spawn\* <spawnl>` functions differ in how
2048 :func:`spawnl\*` functions. The "v" variants are good when the number of
2056 environment is being replaced (using one of the :func:`spawn\*e <spawnl>` variants,
2058 the :envvar:`PATH` variable. The other variants, :func:`spawnl`,
2067 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
2092 Possible values for the *mode* parameter to the :func:`spawn\* <spawnl>` family of
2104 Possible value for the *mode* parameter to the :func:`spawn\* <spawnl>` family of
2118 Possible values for the *mode* parameter to the :func:`spawn\* <spawnl>` family of
2234 id is known, not necessarily a child process. The :func:`spawn\* <spawnl>`
[all …]
Dsubprocess.rst771 Replacing the :func:`os.spawn <os.spawnl>` family
/external/python/cpython2/Lib/
Dos.py603 def spawnl(mode, file, *args): function
/external/python/cpython3/Doc/library/
Dos.rst1466 and stderr), which are always inherited. Using :func:`spawn\* <spawnl>` functions,
3823 .. function:: spawnl(mode, path, ...)
3848 The "l" and "v" variants of the :func:`spawn\* <spawnl>` functions differ in how
3852 :func:`spawnl\*` functions. The "v" variants are good when the number of
3860 environment is being replaced (using one of the :func:`spawn\*e <spawnl>` variants,
3862 the :envvar:`PATH` variable. The other variants, :func:`spawnl`,
3871 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
3885 .. audit-event:: os.spawn mode,path,args,env os.spawnl
3899 Possible values for the *mode* parameter to the :func:`spawn\* <spawnl>` family of
3909 Possible value for the *mode* parameter to the :func:`spawn\* <spawnl>` family of
[all …]
Dsubprocess.rst1288 Replacing the :func:`os.spawn <os.spawnl>` family
/external/python/cpython3/Lib/
Dos.py921 def spawnl(mode, file, *args): function
/external/python/cpython2/Lib/test/
Dtest_tempfile.py432 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
/external/python/cpython3/Lib/test/
Dtest_tempfile.py479 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
Dtest_os.py2887 exitcode = os.spawnl(os.P_WAIT, 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], '')