Home
last modified time | relevance | path

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

/bionic/tests/
Ddlfcn_test.cpp54 void* self = dlopen(nullptr, RTLD_NOW); in TEST()
108 void* preload = dlopen("libtest_dlsym_from_this_grandchild.so", RTLD_NOW | RTLD_LOCAL); in TEST()
111 void* handle = dlopen("libtest_dlsym_from_this.so", RTLD_NOW | RTLD_LOCAL); in TEST()
151 void* handle = dlopen("libtest_empty.so", RTLD_NOW); in TEST()
152 dlopen("libtest_with_dependency.so", RTLD_NOW | RTLD_GLOBAL); in TEST()
164 void* handle = dlopen("libtest_with_dependency.so", RTLD_NOW); in TEST()
177 void* handle = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
179 handle = dlopen("libtest_simple.so", RTLD_NOW); in TEST()
180 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
192 void* handle = dlopen(soname, RTLD_NOW); in TEST()
[all …]
Ddlext_test.cpp73 void* h = dlopen(LIBNAME, RTLD_NOW | RTLD_NOLOAD); in SetUp()
75 h = dlopen(LIBNAME_NORELRO, RTLD_NOW | RTLD_NOLOAD); in SetUp()
91 handle_ = android_dlopen_ext(LIBNAME, RTLD_NOW, nullptr); in TEST_F()
101 handle_ = android_dlopen_ext(LIBNAME, RTLD_NOW, &extinfo); in TEST_F()
115 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo); in TEST_F()
144 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo); in TEST_F()
164 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F()
170 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F()
175 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F()
180 handle_ = android_dlopen_ext("libname_ignored", RTLD_NOW, &extinfo); in TEST_F()
[all …]
Dpthread_dlfcn_test.cpp43 void* handle = dlopen("libtest_pthread_atfork.so", RTLD_NOW | RTLD_LOCAL); in TEST()
Datexit_test.cpp42 void* handle = dlopen("libtest_atexit.so", RTLD_NOW); in TEST()
/bionic/libc/include/
Ddlfcn.h55 RTLD_NOW = 2, enumerator
57 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()
Dnamespaces_root.cpp38 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.cpp329 void* malloc_impl_handle = dlopen(DEBUG_SHARED_LIB, RTLD_NOW | RTLD_LOCAL); in malloc_init_impl()
/bionic/linker/
Dlinker.cpp2337 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()