Searched refs:spawnl (Results 1 – 11 of 11) sorted by relevance
/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/antlr/runtime/Python3/ |
D | ez_setup.py | 47 return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
|
/external/python/cpython2/Doc/library/ |
D | os.rst | 2022 .. 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 …]
|
D | subprocess.rst | 771 Replacing the :func:`os.spawn <os.spawnl>` family
|
/external/python/cpython2/Lib/ |
D | os.py | 603 def spawnl(mode, file, *args): function
|
/external/python/cpython3/Doc/library/ |
D | os.rst | 1466 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 …]
|
D | subprocess.rst | 1288 Replacing the :func:`os.spawn <os.spawnl>` family
|
/external/python/cpython3/Lib/ |
D | os.py | 921 def spawnl(mode, file, *args): function
|
/external/python/cpython2/Lib/test/ |
D | test_tempfile.py | 432 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
|
/external/python/cpython3/Lib/test/ |
D | test_tempfile.py | 479 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
|
D | test_os.py | 2887 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], '')
|