Home
last modified time | relevance | path

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

/external/syslinux/com32/lib/sys/module/
Dexec.c32 int spawnv(const char *name, const char **argv)
136 return spawnv(name, &arg);
/external/syslinux/com32/include/sys/
Dexec.h57 extern int spawnv(const char *name, const char **argv);
/external/python/cpython2/Lib/distutils/
Dspawn.py73 rc = os.spawnv(os.P_WAIT, executable, cmd)
96 rc = os.spawnv(os.P_WAIT, executable, cmd)
/external/autotest/client/tests/bash_shared_mapping/
Dbash_shared_mapping.py36 pid[i] = os.spawnv(os.P_NOWAIT, usemem, args)
/external/syslinux/com32/elflink/
Dtest_com32.c85 result = spawnv(cmd_line[0], cmd_line); in process_spawn()
/external/python/cpython2/Lib/
Dos.py558 def spawnv(mode, file, args): function
610 return spawnv(mode, file, args)
/external/protobuf/gtest/test/
Drun_tests_util.py218 return self.os.spawnv(self.os.P_WAIT, args[0], args)
Drun_tests_util_test.py149 def spawnv(self, wait, executable, *kargs): member in FakeOs
/external/python/cpython2/Doc/library/
Dpopen2.rst29 directly to the program without shell intervention (as with :func:`os.spawnv`).
Dos.rst529 (as with :func:`os.spawnv`). If *cmd* is a string it will be passed to the shell
2026 spawnv(mode, path, args)
2059 :func:`spawnle`, :func:`spawnv`, and :func:`spawnve`, will not use the
2067 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
/external/python/cpython2/PC/os2emx/
DREADME.os2emx533 17. os.spawnv() and os.spawnve() expose EMX's library routines rather
573 of trying. os.spawnv() _does_ work. PythonPM passes all regression tests
/external/python/cpython2/Lib/idlelib/
DPyShell.py408 self.rpcpid = os.spawnv(os.P_NOWAIT, sys.executable, args)
DChangeLog515 module defines 'spawnv' now, so we check for 'fork' first.
/external/python/cpython2/Modules/
Dposixmodule.c3421 spawnval = spawnv(mode, path, argvlist); in posix_spawnv()
/external/python/cpython2/Misc/
DHISTORY10664 - On Windows, support spawnv() and associated P_* symbols.