Home
last modified time | relevance | path

Searched refs:RTLD_GLOBAL (Results 1 – 25 of 74) sorted by relevance

123

/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DUnmanagedLibrary.cs43 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/
Dignore_lib2.cc19 dlopen(lib0.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
20 dlopen(lib1.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
Dignore_lib3.cc22 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
Dignore_lib1.cc24 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
Dignore_lib4.cc39 void *h = dlopen(lib.c_str(), RTLD_GLOBAL | RTLD_NOW); in main()
/external/python/cpython2/Lib/ctypes/test/
Dtest_find.py37 self.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
42 self.glu = CDLL(lib_glu, RTLD_GLOBAL)
/external/libxml2/
Dxmlmodule.c211 #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/
Ddri_common.c48 #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/
Dtest_find.py34 cls.gl = CDLL(lib_gl, mode=RTLD_GLOBAL)
39 cls.glu = CDLL(lib_glu, RTLD_GLOBAL)
/external/libxml2/os400/dlfcn/
Ddlfcn.h20 #define RTLD_GLOBAL 010 macro
/external/python/cpython2/Lib/plat-sunos5/
DDLFCN.py6 RTLD_GLOBAL = 0x00100 variable
/external/tensorflow/tensorflow/python/
Dpywrap_dlopen_global_flags.py45 sys.setdlopenflags(_default_dlopen_flags | ctypes.RTLD_GLOBAL)
/external/iproute2/include/
Ddlfcn.h11 #define RTLD_GLOBAL 1 macro
/external/python/cpython2/Modules/
Ddlmodule.c269 #ifdef RTLD_GLOBAL in initdl()
270 INSINT(RTLD_GLOBAL); in initdl()
/external/python/cpython2/Modules/_ctypes/darwin/
Ddlfcn.h72 #define RTLD_GLOBAL 0x8 macro
Ddlfcn_simple.c128 … | (mode & RTLD_GLOBAL) ? 0 : NSLINKMODULE_OPTION_PRIVATE in darwin_dlopen()
/external/python/cpython3/Modules/_ctypes/darwin/
Ddlfcn.h72 #define RTLD_GLOBAL 0x8 macro
Ddlfcn_simple.c128 … | (mode & RTLD_GLOBAL) ? 0 : NSLINKMODULE_OPTION_PRIVATE in darwin_dlopen()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/Unix/
DDynamicLibrary.inc29 void *Handle = ::dlopen(File, RTLD_LAZY|RTLD_GLOBAL);
37 // with the handle of dlopen(NULL, RTLD_GLOBAL).
/external/python/cpython2/Lib/plat-linux2/
DDLFCN.py81 RTLD_GLOBAL = 0x00100 variable
/external/chromium-trace/catapult/systrace/atrace_helper/jni/
Dlibmemtrack_wrapper.cc72 void *handle = dlopen("libmemtrack.so", RTLD_GLOBAL | RTLD_NOW); in LazyOpenLibmemtrack()
/external/swiftshader/third_party/LLVM/lib/Support/
DDynamicLibrary.cpp77 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL); in getPermanentLibrary()
/external/llvm/lib/Support/
DDynamicLibrary.cpp60 void *handle = dlopen(filename, RTLD_LAZY|RTLD_GLOBAL); in getPermanentLibrary()
/external/python/cpython3/Lib/ctypes/
D__init__.py11 from _ctypes import RTLD_LOCAL, RTLD_GLOBAL
30 DEFAULT_MODE = RTLD_GLOBAL
/external/python/cpython2/Lib/ctypes/
D__init__.py11 from _ctypes import RTLD_LOCAL, RTLD_GLOBAL
30 DEFAULT_MODE = RTLD_GLOBAL

123