/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | UnmanagedLibrary.cs | 43 const int RTLD_GLOBAL = 8; field in Grpc.Core.Internal.UnmanagedLibrary 142 return Mono.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary() 146 return CoreCLR.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary() 148 return Linux.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary() 152 return MacOSX.dlopen(libraryPath, RTLD_GLOBAL + RTLD_LAZY); in PlatformSpecificLoadLibrary()
|
/external/compiler-rt/test/tsan/ |
D | ignore_lib2.cc | 19 dlopen(lib0.c_str(), RTLD_GLOBAL | RTLD_NOW); in main() 20 dlopen(lib1.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
|
D | ignore_lib3.cc | 22 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
|
D | ignore_lib1.cc | 24 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
|
D | ignore_lib4.cc | 39 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
|
/external/python/cpython2/Lib/ctypes/test/ |
D | test_find.py | 37 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL) 42 self.glu = CDLL(lib_glu, RTLD_GLOBAL)
|
/external/libxml2/ |
D | xmlmodule.c | 211 #ifndef RTLD_GLOBAL /* For Tru64 UNIX 4.0 */ 212 #define RTLD_GLOBAL 0 macro 225 return dlopen(name, RTLD_GLOBAL | RTLD_NOW); in xmlModulePlatformOpen()
|
/external/mesa3d/src/glx/ |
D | dri_common.c | 48 #ifndef RTLD_GLOBAL 49 #define RTLD_GLOBAL 0 macro 106 glhandle = dlopen(GL_LIB_NAME, RTLD_NOW | RTLD_GLOBAL); in driOpenDriver() 134 handle = dlopen(realDriverName, RTLD_NOW | RTLD_GLOBAL); in driOpenDriver() 141 handle = dlopen(realDriverName, RTLD_NOW | RTLD_GLOBAL); in driOpenDriver()
|
/external/python/cpython3/Lib/ctypes/test/ |
D | test_find.py | 34 cls.gl = CDLL(lib_gl, mode=RTLD_GLOBAL) 39 cls.glu = CDLL(lib_glu, RTLD_GLOBAL)
|
/external/libxml2/os400/dlfcn/ |
D | dlfcn.h | 20 #define RTLD_GLOBAL 010 macro
|
/external/python/cpython2/Lib/plat-sunos5/ |
D | DLFCN.py | 6 RTLD_GLOBAL = 0x00100 variable
|
/external/tensorflow/tensorflow/python/ |
D | pywrap_dlopen_global_flags.py | 45 sys.setdlopenflags(_default_dlopen_flags | ctypes.RTLD_GLOBAL)
|
/external/iproute2/include/ |
D | dlfcn.h | 11 #define RTLD_GLOBAL 1 macro
|
/external/python/cpython2/Modules/ |
D | dlmodule.c | 269 #ifdef RTLD_GLOBAL in initdl() 270 INSINT(RTLD_GLOBAL); in initdl()
|
/external/python/cpython2/Modules/_ctypes/darwin/ |
D | dlfcn.h | 72 #define RTLD_GLOBAL 0x8 macro
|
D | dlfcn_simple.c | 128 … | (mode & RTLD_GLOBAL) ? 0 : NSLINKMODULE_OPTION_PRIVATE in darwin_dlopen()
|
/external/python/cpython3/Modules/_ctypes/darwin/ |
D | dlfcn.h | 72 #define RTLD_GLOBAL 0x8 macro
|
D | dlfcn_simple.c | 128 … | (mode & RTLD_GLOBAL) ? 0 : NSLINKMODULE_OPTION_PRIVATE in darwin_dlopen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/ |
D | DynamicLibrary.inc | 29 void *Handle = ::dlopen(File, RTLD_LAZY|RTLD_GLOBAL); 37 // with the handle of dlopen(NULL, RTLD_GLOBAL).
|
/external/python/cpython2/Lib/plat-linux2/ |
D | DLFCN.py | 81 RTLD_GLOBAL = 0x00100 variable
|
/external/chromium-trace/catapult/systrace/atrace_helper/jni/ |
D | libmemtrack_wrapper.cc | 72 void *handle = dlopen("libmemtrack.so", RTLD_GLOBAL | RTLD_NOW); in LazyOpenLibmemtrack()
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
D | DynamicLibrary.cpp | 77 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL); in getPermanentLibrary()
|
/external/llvm/lib/Support/ |
D | DynamicLibrary.cpp | 60 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL); in getPermanentLibrary()
|
/external/python/cpython3/Lib/ctypes/ |
D | __init__.py | 11 from _ctypes import RTLD_LOCAL, RTLD_GLOBAL 30 DEFAULT_MODE = RTLD_GLOBAL
|
/external/python/cpython2/Lib/ctypes/ |
D | __init__.py | 11 from _ctypes import RTLD_LOCAL, RTLD_GLOBAL 30 DEFAULT_MODE = RTLD_GLOBAL
|