Searched refs:RTLD_LOCAL (Results 1 – 11 of 11) sorted by relevance
/bionic/tests/ |
D | cfi_test.cpp | 41 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_LOCAL); in TEST() 105 void* handle2 = dlopen("libcfi-test.so", RTLD_NOW | RTLD_LOCAL); in TEST() 127 handle = dlopen("libcfi-test-bad.so", RTLD_NOW | RTLD_LOCAL); in TEST() 130 handle = dlopen("libcfi-test-bad.so", RTLD_NOW | RTLD_LOCAL); in TEST()
|
D | pthread_dlfcn_test.cpp | 43 …_test_handle); g_atfork_test_handle = dlopen("libtest_pthread_atfork.so", RTLD_NOW | RTLD_LOCAL); } in AtForkChild() 48 void* handle = dlopen("libtest_pthread_atfork.so", RTLD_NOW | RTLD_LOCAL); in TEST() 93 g_atfork_test_handle = dlopen("libtest_pthread_atfork.so", RTLD_NOW | RTLD_LOCAL); in TEST()
|
D | dlfcn_test.cpp | 99 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_LAZY | RTLD_LOCAL); in TEST() 136 void* preload = dlopen("libtest_dlsym_from_this_grandchild.so", RTLD_NOW | RTLD_LOCAL); in TEST() 139 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_NOW | RTLD_LOCAL); in TEST() 467 handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_LOCAL); in TEST() 489 void* handle_for_1 = dlopen("libtest_check_order_reloc_siblings_1.so", RTLD_NOW | RTLD_LOCAL); in TEST() 492 handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_LOCAL); in TEST() 532 handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_LOCAL); in TEST() 578 handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_LOCAL); in TEST() 602 void* handle = dlopen("libtest_two_parents_parent1.so", RTLD_NOW | RTLD_LOCAL); in TEST() 605 void* handle2 = dlopen("libtest_two_parents_parent2.so", RTLD_NOW | RTLD_LOCAL); in TEST() [all …]
|
D | dlext_test.cpp | 1969 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_NOW | RTLD_LOCAL); in TEST() 1977 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_NOW | RTLD_LOCAL); in TEST()
|
/bionic/tests/headers/posix/ |
D | dlfcn_h.c | 37 MACRO(RTLD_LOCAL); in dlfcn_h()
|
/bionic/libc/include/ |
D | dlfcn.h | 55 #define RTLD_LOCAL 0 macro
|
/bionic/libc/bionic/ |
D | icu.cpp | 78 g_libicuuc_handle = dlopen("libicuuc.so", RTLD_LOCAL); in __find_icu()
|
D | malloc_common.cpp | 383 void* impl_handle = dlopen(shared_lib, RTLD_NOW | RTLD_LOCAL); in LoadSharedLibrary()
|
/bionic/ |
D | android-changes-for-ndk-developers.md | 54 ## RTLD_LOCAL (Available in API level >= 23) 56 The dlopen(3) RTLD_LOCAL flag used to be ignored but is implemented 57 correctly in API 23 and later. Note that RTLD_LOCAL is the default, 58 so even calls to dlopen(3) that didn’t explicitly use RTLD_LOCAL will 59 be affected (unless they explicitly used RTLD_GLOBAL). With RTLD_LOCAL,
|
/bionic/tests/libs/ |
D | Android.bp | 581 // Library to check RTLD_LOCAL with dlsym in 'this'
|
/bionic/linker/ |
D | linker.cpp | 2070 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()
|