Home
last modified time | relevance | path

Searched refs:RTLD_LOCAL (Results 1 – 11 of 11) sorted by relevance

/bionic/tests/
Dcfi_test.cpp41 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()
Dpthread_dlfcn_test.cpp43 …_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()
Ddlfcn_test.cpp99 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 …]
Ddlext_test.cpp1969 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/
Ddlfcn_h.c37 MACRO(RTLD_LOCAL); in dlfcn_h()
/bionic/libc/include/
Ddlfcn.h55 #define RTLD_LOCAL 0 macro
/bionic/libc/bionic/
Dicu.cpp78 g_libicuuc_handle = dlopen("libicuuc.so", RTLD_LOCAL); in __find_icu()
Dmalloc_common.cpp383 void* impl_handle = dlopen(shared_lib, RTLD_NOW | RTLD_LOCAL); in LoadSharedLibrary()
/bionic/
Dandroid-changes-for-ndk-developers.md54 ## 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/
DAndroid.bp581 // Library to check RTLD_LOCAL with dlsym in 'this'
/bionic/linker/
Dlinker.cpp2070 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()