Searched refs:spawnl (Results 1 - 8 of 8) sorted by relevance

/external/syslinux/com32/include/sys/
H A Dexec.h60 * spawnl - Executes a program in the current environment.
71 extern int spawnl(const char *name, const char *arg, ...);
/external/selinux/gui/
H A 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/syslinux/com32/lib/sys/module/
H A Dexec.c128 int spawnl(const char *name, const char *arg, ...)
/external/python/cpython2/Lib/
H A Dos.py603 def spawnl(mode, file, *args): function
604 """spawnl(mode, file, *args) -> integer
624 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
/external/python/cpython3/Lib/
H A Dos.py913 def spawnl(mode, file, *args): function
914 """spawnl(mode, file, *args) -> integer
934 __all__.extend(["spawnl", "spawnle"])
/external/python/cpython2/Lib/test/
H A Dtest_tempfile.py27 has_spawnl = hasattr(os, 'spawnl')
394 @unittest.skipUnless(has_spawnl, 'os.spawnl not available')
426 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)
/external/python/cpython3/Lib/test/
H A Dtest_os.py2264 @requires_os_func('spawnl')
2267 exitcode = os.spawnl(os.P_WAIT, args[0], *args)
2332 @requires_os_func('spawnl')
2335 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0])
2336 self.assertRaises(ValueError, os.spawnl, os.P_NOWAIT, args[0], '')
H A Dtest_tempfile.py26 has_spawnl = hasattr(os, 'spawnl')
445 @unittest.skipUnless(has_spawnl, 'os.spawnl not available')
478 retval = os.spawnl(os.P_WAIT, sys.executable, decorated, tester, v, fd)

Completed in 253 milliseconds