/external/grpc-grpc/src/csharp/Grpc.Core/Internal/ |
D | UnmanagedLibrary.cs | 42 const int RTLD_LAZY = 1; 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/python/cpython2/Modules/ |
D | dlmodule.c | 12 #ifndef RTLD_LAZY 13 #define RTLD_LAZY 1 macro 178 mode = RTLD_LAZY; in dl_open() 184 if (mode != RTLD_LAZY) { in dl_open() 260 x = PyInt_FromLong((long)RTLD_LAZY); in initdl()
|
/external/swiftshader/src/Common/ |
D | SharedLibrary.hpp | 95 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary() 104 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle() 108 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count in getLibraryHandle()
|
/external/swiftshader/src/System/ |
D | SharedLibrary.hpp | 113 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary() 122 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle() 126 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); // Increment reference count in getLibraryHandle()
|
/external/compiler-rt/test/asan/TestCases/Posix/ |
D | coverage-module-unloaded.cc | 28 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib1 in main() 33 void *handle2 = dlopen(argv[2], RTLD_LAZY); // %dynamiclib2 in main()
|
D | coverage-direct-activation.cc | 51 void *handle1 = dlopen(argv[1], RTLD_LAZY); // %dynamiclib in main()
|
D | coverage-direct.cc | 75 void *handle1 = dlopen(argv[1], RTLD_LAZY); in main()
|
/external/iproute2/tc/ |
D | tc.c | 113 dlh = dlopen(buf, RTLD_LAZY); in get_qdisc_kind() 118 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_qdisc_kind() 157 dlh = dlopen(buf, RTLD_LAZY); in get_filter_kind() 161 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_filter_kind()
|
D | tc_exec.c | 54 dlh = dlopen(buf, RTLD_LAZY); in get_exec_kind() 58 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_exec_kind()
|
D | m_ipt.c | 195 handle = dlopen(path, RTLD_LAZY); in get_target_name() 199 handle = dlopen(path, RTLD_LAZY); in get_target_name() 203 handle = dlopen(path, RTLD_LAZY); in get_target_name() 208 handle = dlopen(path, RTLD_LAZY); in get_target_name()
|
/external/python/cpython2/Doc/library/ |
D | dl.rst | 34 .. function:: open(name[, mode=RTLD_LAZY]) 37 (:const:`RTLD_LAZY`) or immediate binding (:const:`RTLD_NOW`). Default is 38 :const:`RTLD_LAZY`. Note that some systems do not support :const:`RTLD_NOW`. 45 .. data:: RTLD_LAZY
|
/external/elfutils/libdwfl/ |
D | debuginfod-client.c | 104 void *debuginfod_so = dlopen("libdebuginfod-" VERSION ".so", RTLD_LAZY); in __libdwfl_debuginfod_init() 107 debuginfod_so = dlopen("libdebuginfod.so", RTLD_LAZY); in __libdwfl_debuginfod_init()
|
/external/tensorflow/tensorflow/lite/nnapi/ |
D | nnapi_implementation.cc | 123 libneuralnetworks = dlopen("libneuralnetworks.so", RTLD_LAZY | RTLD_LOCAL); in LoadNnApi() 167 libandroid = dlopen("libandroid.so", RTLD_LAZY | RTLD_LOCAL); in LoadNnApi() 171 void* cutils_handle = dlopen("libcutils.so", RTLD_LAZY | RTLD_LOCAL); in LoadNnApi()
|
/external/libepoxy/test/ |
D | egl_without_glx.c | 86 void *egl = dlopen("libEGL.so.1", RTLD_LAZY | RTLD_LOCAL); in override_eglBindAPI() 107 void *egl = dlopen("libEGL.so.1", RTLD_LAZY | RTLD_LOCAL); in override_eglGetError()
|
D | dlwrap.h | 58 void *lib = dlwrap_real_dlopen(library, RTLD_LAZY | RTLD_LOCAL); \
|
/external/angle/src/gpu_info_util/ |
D | SystemInfo_libpci.cpp | 37 mHandle = dlopen("libpci.so.3", RTLD_LAZY); in LibPCI() 41 mHandle = dlopen("libpci.so", RTLD_LAZY); in LibPCI()
|
/external/iproute2/genl/ |
D | genl.c | 67 dlh = dlopen(buf, RTLD_LAZY); in get_genl_kind() 71 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_genl_kind()
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
D | asan_dlopen_test.cc | 11 dlopen(RT, RTLD_LAZY); in main()
|
D | stack-trace-dlclose.cc | 28 void *handle = dlopen(SO_DIR "/stack_trace_dlclose.so", RTLD_LAZY); in main()
|
/external/skia/src/ports/ |
D | SkOSLibrary_posix.cpp | 15 return dlopen(libraryName, RTLD_LAZY); in DynamicLoadLibrary()
|
/external/skqp/src/ports/ |
D | SkOSLibrary_posix.cpp | 15 return dlopen(libraryName, RTLD_LAZY); in DynamicLoadLibrary()
|
/external/libxml2/os400/dlfcn/ |
D | dlfcn.h | 18 #define RTLD_LAZY 000 macro
|
/external/python/cpython2/Lib/plat-sunos5/ |
D | DLFCN.py | 3 RTLD_LAZY = 0x00001 variable
|
/external/compiler-rt/test/asan/TestCases/Android/ |
D | coverage-android.cc | 127 dlopen(SO_DIR "/libcoverage_android_test_1.so", RTLD_LAZY); in main()
|
/external/skia/src/gpu/gl/iOS/ |
D | GrGLMakeNativeInterface_iOS.cpp | 21 std::unique_ptr<void, SkFunctionWrapper<int(void*), dlclose>> lib(dlopen(kPath, RTLD_LAZY)); in GrGLMakeNativeInterface()
|