Searched defs:RTLD_LOCAL (Results 1 - 5 of 5) sorted by relevance

/external/python/cpython2/Modules/_ctypes/darwin/
H A Ddlfcn.h71 #define RTLD_LOCAL 0x4 macro
/external/python/cpython2/Lib/plat-sunos5/
H A DDLFCN.py7 RTLD_LOCAL = 0x00000 variable
/external/python/cpython2/Lib/plat-linux2/
H A DDLFCN.py82 RTLD_LOCAL = 0 variable
/external/python/cpython2/Lib/ctypes/
H A D__init__.py11 from _ctypes import RTLD_LOCAL, RTLD_GLOBAL namespace
22 DEFAULT_MODE = RTLD_LOCAL
25 # because RTLD_LOCAL does not work at least on some
/external/python/cpython2/Modules/_ctypes/
H A D_ctypes.c5728 /* If RTLD_LOCAL is not defined (Windows!), set it to zero. */
5729 #ifndef RTLD_LOCAL
5730 #define RTLD_LOCAL 0 macro
5734 RTLD_LOCAL.
5737 #define RTLD_GLOBAL RTLD_LOCAL
5740 PyModule_AddObject(m, "RTLD_LOCAL", PyInt_FromLong(RTLD_LOCAL));

Completed in 838 milliseconds