/external/mesa3d/scons/ |
fixes.py | 3 # Monkey patch os.spawnve on windows to become thread safe 7 from os import spawnve as old_spawnve 25 os.spawnve = new_spawnve
|
/toolchain/binutils/binutils-2.25/libiberty/ |
pex-djgpp.c | 205 status = (((flags & PEX_SEARCH) != 0 ? spawnvpe : spawnve)
|
pex-unix.c | 554 pid = spawnve (_P_NOWAITO, executable, (cc_cp)argv, (cc_cp)env);
|
configure | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Lib/ |
os.py | 579 def spawnve(mode, file, args, env):
function 580 """spawnve(mode, file, args, env) -> integer
633 return spawnve(mode, file, args[:-1], env)
636 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Lib/ |
os.py | 594 def spawnve(mode, file, args, env):
function 595 """spawnve(mode, file, args, env) -> integer
648 return spawnve(mode, file, args[:-1], env)
651 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
os.py | 565 def spawnve(mode, file, args, env):
function 566 """spawnve(mode, file, args, env) -> integer
619 return spawnve(mode, file, args[:-1], env)
622 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/external/python/cpython2/Lib/ |
os.py | 567 def spawnve(mode, file, args, env): function 568 """spawnve(mode, file, args, env) -> integer 621 return spawnve(mode, file, args[:-1], env) 624 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/prebuilts/gdb/darwin-x86/lib/python2.7/ |
os.py | 565 def spawnve(mode, file, args, env): function 566 """spawnve(mode, file, args, env) -> integer 619 return spawnve(mode, file, args[:-1], env) 622 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/prebuilts/gdb/linux-x86/lib/python2.7/ |
os.py | 565 def spawnve(mode, file, args, env): function 566 """spawnve(mode, file, args, env) -> integer 619 return spawnve(mode, file, args[:-1], env) 622 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os.py | 565 def spawnve(mode, file, args, env): function 566 """spawnve(mode, file, args, env) -> integer 619 return spawnve(mode, file, args[:-1], env) 622 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
os.py | 565 def spawnve(mode, file, args, env): function 566 """spawnve(mode, file, args, env) -> integer 619 return spawnve(mode, file, args[:-1], env) 622 __all__.extend(["spawnv", "spawnve", "spawnl", "spawnle",])
|
/external/mksh/src/ |
os2.c | 472 pid = spawnve(P_NOWAIT, exec_name, argv, envp);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
process.h | 190 intptr_t __cdecl spawnve(int,const char *_Filename,char *const _ArgList[],char *const _Env[]) __MINGW_ATTRIB_DEPRECATED_MSVC2005;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/ |
edk2module.c | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/ |
edk2module.c | [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
posixmodule.c | [all...] |
/external/python/cpython2/Modules/ |
posixmodule.c | [all...] |