Searched refs:RTLD_NOW (Results 1 – 15 of 15) sorted by relevance
/bionic/tests/ |
D | dlfcn_test.cpp | 78 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 …]
|
D | dlext_test.cpp | 71 void* h = dlopen(kLibName, RTLD_NOW | RTLD_NOLOAD); in SetUp() 73 h = dlopen(kLibNameNoRelro, RTLD_NOW | RTLD_NOLOAD); in SetUp() 89 handle_ = android_dlopen_ext(kLibName, RTLD_NOW, nullptr); in TEST_F() 99 handle_ = android_dlopen_ext(kLibName, RTLD_NOW, &extinfo); in TEST_F() 113 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo); in TEST_F() 142 handle_ = android_dlopen_ext(lib_path.c_str(), RTLD_NOW, &extinfo); in TEST_F() 158 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F() 164 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F() 169 handle_ = android_dlopen_ext("libname_placeholder", RTLD_NOW, &extinfo); in TEST_F() 174 handle_ = android_dlopen_ext("libname_ignored", RTLD_NOW, &extinfo); in TEST_F() [all …]
|
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_symlink_support.cpp | 57 void* handle = dlopen(source_file_name, RTLD_NOW); in create_dlfcn_test_symlink()
|
D | atexit_test.cpp | 42 void* handle = dlopen("libtest_atexit.so", RTLD_NOW); in TEST()
|
/bionic/libc/include/ |
D | dlfcn.h | 62 #define RTLD_NOW 0x00002 macro 69 #undef RTLD_NOW 70 #define RTLD_NOW 0x00000 macro
|
/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 | cfi_test_helper2.cpp | 25 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD); in main()
|
D | namespaces_root.cpp | 54 void* handle = dlopen("libnstest_dlopened.so", RTLD_NOW | RTLD_GLOBAL); in ns_get_dlopened_string()
|
/bionic/libc/bionic/ |
D | NetdClient.cpp | 38 void* netdClientHandle = dlopen("libnetd_client.so", RTLD_NOW); in netdClientInitImpl()
|
D | malloc_common.cpp | 342 void* malloc_impl_handle = dlopen(DEBUG_SHARED_LIB, RTLD_NOW | RTLD_LOCAL); in malloc_init_impl()
|
/bionic/ |
D | android-changes-for-ndk-developers.md | 80 `dlopen("/this/directory/does/not/exist/libc.so", RTLD_NOW)` would
|
/bionic/linker/ |
D | linker.cpp | 1958 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()
|