/external/python/cpython2/Modules/ |
D | dlmodule.c | 12 #ifndef RTLD_LAZY 13 #define RTLD_LAZY 1 macro 175 mode = RTLD_LAZY; in dl_open() 181 if (mode != RTLD_LAZY) { in dl_open() 257 x = PyInt_FromLong((long)RTLD_LAZY); in initdl()
|
/external/swiftshader/src/Common/ |
D | SharedLibrary.hpp | 90 return dlopen(path, RTLD_LAZY | RTLD_LOCAL); in loadLibrary() 99 void *resident = dlopen(path, RTLD_LAZY | RTLD_NOLOAD | RTLD_LOCAL); in getLibraryHandle() 103 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/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/iproute2/tc/ |
D | tc.c | 132 dlh = dlopen(buf, RTLD_LAZY); in get_qdisc_kind() 137 dlh = BODY = dlopen(NULL, RTLD_LAZY); in get_qdisc_kind() 184 dlh = dlopen(buf, RTLD_LAZY); in get_filter_kind() 188 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/linux-kselftest/tools/testing/selftests/x86/ |
D | test_vdso.c | 45 RTLD_LAZY | RTLD_LOCAL | RTLD_NOLOAD); in fill_function_pointers() 48 RTLD_LAZY | RTLD_LOCAL | RTLD_NOLOAD); in fill_function_pointers()
|
/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/vulkan-validation-layers/demos/smoke/ |
D | ShellXcb.cpp | 139 handle = dlopen(UNINSTALLED_LOADER, RTLD_LAZY); in load_vk() 140 if (!handle) handle = dlopen(filename, RTLD_LAZY); in load_vk() 142 handle = dlopen(filename, RTLD_LAZY); in load_vk()
|
D | ShellWayland.cpp | 250 handle = dlopen(UNINSTALLED_LOADER, RTLD_LAZY); in load_vk() 251 if (!handle) handle = dlopen(filename, RTLD_LAZY); in load_vk() 253 handle = dlopen(filename, RTLD_LAZY); in load_vk()
|
/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/fio/os/windows/posix/include/ |
D | dlfcn.h | 4 #define RTLD_LAZY 1 macro
|
/external/skqp/src/ports/ |
D | SkOSLibrary_posix.cpp | 15 return dlopen(libraryName, RTLD_LAZY); in DynamicLoadLibrary()
|
/external/skia/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/valgrind/cachegrind/tests/ |
D | dlclose.c | 19 handle = dlopen ("./myprint.so", RTLD_LAZY); in main()
|
/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/v8/src/third_party/vtune/ |
D | jitprofiling.cc | 369 m_libHandle = dlopen(dllName, RTLD_LAZY); in loadiJIT_Funcs() 378 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY); in loadiJIT_Funcs()
|
/external/llvm/lib/ExecutionEngine/IntelJITEvents/ |
D | jitprofiling.c | 350 m_libHandle = dlopen(dllName, RTLD_LAZY); in loadiJIT_Funcs() 359 m_libHandle = dlopen(DEFAULT_DLLNAME, RTLD_LAZY); in loadiJIT_Funcs()
|
/external/iproute2/include/ |
D | dlfcn.h | 10 #define RTLD_LAZY 0 macro
|