Searched defs:spawnvp (Results 1 - 3 of 3) sorted by relevance

/external/ImageMagick/MagickCore/
H A Dnt-base.h226 #if !defined(spawnvp)
227 # define spawnvp _spawnvp macro
/external/python/cpython2/Lib/
H A Dos.py577 # Note: spawnvp[e] is't currently supported on Windows
579 def spawnvp(mode, file, args): function
580 """spawnvp(mode, file, args) -> integer
627 if _exists("spawnvp"):
628 # At the moment, Windows doesn't implement spawnvp[e],
638 return spawnvp(mode, file, args)
652 __all__.extend(["spawnvp", "spawnvpe", "spawnlp", "spawnlpe",])
/external/python/cpython3/Lib/
H A Dos.py883 # Note: spawnvp[e] is't currently supported on Windows
885 def spawnvp(mode, file, args): function
886 """spawnvp(mode, file, args) -> integer
906 __all__.extend(["spawnv", "spawnve", "spawnvp", "spawnvpe"])
937 if _exists("spawnvp"):
938 # At the moment, Windows doesn't implement spawnvp[e],
948 return spawnvp(mode, file, args)

Completed in 238 milliseconds