Searched refs:RTLD_NOW (Results 1 – 11 of 11) sorted by relevance
/bionic/tests/ |
D | dlfcn_test.cpp | 54 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 …]
|
D | dlext_test.cpp | 73 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 …]
|
D | pthread_dlfcn_test.cpp | 43 void* handle = dlopen("libtest_pthread_atfork.so", RTLD_NOW | RTLD_LOCAL); in TEST()
|
D | atexit_test.cpp | 42 void* handle = dlopen("libtest_atexit.so", RTLD_NOW); in TEST()
|
/bionic/libc/include/ |
D | dlfcn.h | 55 RTLD_NOW = 2, enumerator 57 RTLD_NOW = 0,
|
/bionic/tests/libs/ |
D | dlopen_testlib_dlopen_from_ctor.cpp | 20 void* handle = dlopen("libc.so", RTLD_NOW); in call_dlopen_from_ctor()
|
D | dlopen_b.cpp | 10 void *handle = dlopen("libtest_dt_runpath_x.so", RTLD_NOW); in dlopen_b()
|
D | namespaces_root.cpp | 38 void* handle = dlopen("libnstest_dlopened.so", RTLD_NOW | RTLD_GLOBAL); in ns_get_dlopened_string()
|
/bionic/libc/bionic/ |
D | NetdClient.cpp | 37 void* netdClientHandle = dlopen("libnetd_client.so", RTLD_NOW); in netdClientInitImpl()
|
D | malloc_common.cpp | 329 void* malloc_impl_handle = dlopen(DEBUG_SHARED_LIB, RTLD_NOW | RTLD_LOCAL); in malloc_init_impl()
|
/bionic/linker/ |
D | linker.cpp | 2337 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()
|