Home
last modified time | relevance | path

Searched refs:RTLD_NOW (Results 1 – 15 of 15) sorted by relevance

/bionic/tests/
Ddlfcn_test.cpp78 void* self = dlopen(nullptr, RTLD_NOW); in TEST()
132 void* preload = dlopen("libtest_dlsym_from_this_grandchild.so", RTLD_NOW | RTLD_LOCAL); in TEST()
135 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_NOW | RTLD_LOCAL); in TEST()
175 void* handle = dlopen("libtest_empty.so", RTLD_NOW); in TEST()
176 dlopen("libtest_with_dependency.so", RTLD_NOW | RTLD_GLOBAL); in TEST()
189 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_NOW); in TEST()
198 void* handle = dlopen("libtest_with_dependency.so", RTLD_NOW); in TEST()
211 void* handle = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
213 handle = dlopen("libtest_simple.so", RTLD_NOW); in TEST()
214 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
[all …]
Ddlext_test.cpp70 void* h = dlopen(kLibName, RTLD_NOW | RTLD_NOLOAD); in SetUp()
72 h = dlopen(kLibNameNoRelro, RTLD_NOW | RTLD_NOLOAD); in SetUp()
88 handle_ = android_dlopen_ext(kLibName, RTLD_NOW, nullptr); in TEST_F()
98 handle_ = android_dlopen_ext(kLibName, RTLD_NOW, &extinfo); in TEST_F()
112 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo); in TEST_F()
141 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo); in TEST_F()
157 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F()
163 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F()
168 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F()
173 handle_ = android_dlopen_ext("libname_ignored", RTLD_NOW, &extinfo); in TEST_F()
[all …]
Dcfi_test.cpp36 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_LOCAL); in TEST()
89 void* handle2 = dlopen("libcfi-test.so", RTLD_NOW | RTLD_LOCAL); in TEST()
111 handle = dlopen("libcfi-test-bad.so", RTLD_NOW | RTLD_LOCAL); in TEST()
114 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_symlink_support.cpp57 void* handle = dlopen(source_file_name, RTLD_NOW); in create_dlfcn_test_symlink()
Datexit_test.cpp42 void* handle = dlopen("libtest_atexit.so", RTLD_NOW); in TEST()
/bionic/libc/include/
Ddlfcn.h62 RTLD_NOW = 2, enumerator
64 RTLD_NOW = 0,
/bionic/tests/libs/
Ddlopen_testlib_dlopen_from_ctor.cpp20 void* handle = dlopen("libc.so", RTLD_NOW); in call_dlopen_from_ctor()
Ddlopen_b.cpp10 void *handle = dlopen("libtest_dt_runpath_x.so", RTLD_NOW); in dlopen_b()
Dcfi_test_helper2.cpp25 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD); in main()
Dnamespaces_root.cpp54 void* handle = dlopen("libnstest_dlopened.so", RTLD_NOW | RTLD_GLOBAL); in ns_get_dlopened_string()
/bionic/libc/bionic/
DNetdClient.cpp37 void* netdClientHandle = dlopen("libnetd_client.so", RTLD_NOW); in netdClientInitImpl()
Dmalloc_common.cpp342 void* malloc_impl_handle = dlopen(DEBUG_SHARED_LIB, RTLD_NOW | RTLD_LOCAL); in malloc_init_impl()
/bionic/
Dandroid-changes-for-ndk-developers.md80 `dlopen("/this/directory/does/not/exist/libc.so", RTLD_NOW)` would
/bionic/linker/
Dlinker.cpp1921 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()