Home
last modified time | relevance | path

Searched refs:spawnvp (Results 1 – 12 of 12) sorted by relevance

/external/ImageMagick/MagickCore/
Dnt-base.h226 #if !defined(spawnvp)
227 # define spawnvp _spawnvp macro
/external/python/cpython2/Lib/
Dos.py579 def spawnvp(mode, file, args): function
638 return spawnvp(mode, file, args)
/external/python/cpython3/Lib/
Dos.py885 def spawnvp(mode, file, args): function
948 return spawnvp(mode, file, args)
/external/python/cpython2/Doc/library/
Dos.rst2028 spawnvp(mode, file, args)
2054 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the
2067 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
2081 Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
Dsubprocess.rst788 os.spawnvp(os.P_NOWAIT, path, args)
/external/ImageMagick/config/
Dconfig.h.in432 /* Define to 1 if you have the `spawnvp' function. */
/external/python/cpython3/Doc/library/
Dos.rst3271 spawnvp(mode, file, args)
3297 :func:`spawnlpe`, :func:`spawnvp`, and :func:`spawnvpe`) will use the
3310 :func:`spawnl`, :func:`spawnlp`, :func:`spawnv`, and :func:`spawnvp` all cause
3324 Availability: Unix, Windows. :func:`spawnlp`, :func:`spawnlpe`, :func:`spawnvp`
Dsubprocess.rst1063 os.spawnvp(os.P_NOWAIT, path, args)
/external/python/cpython3/Lib/test/
Dtest_os.py2303 exitcode = os.spawnvp(os.P_WAIT, args[0], args)
/external/ImageMagick/
Dconfigure.ac1219 …str strtod strtod_l strtol strtoul symlink sysconf sigemptyset sigaction spawnvp strerror strlcat …
Dconfigure27862 …str strtod strtod_l strtol strtoul symlink sysconf sigemptyset sigaction spawnvp strerror strlcat …
/external/python/cpython2/Modules/
Dposixmodule.c3663 spawnval = spawnvp(mode, path, argvlist); in posix_spawnvp()