Home
last modified time | relevance | path

Searched refs:RTLD_NOLOAD (Results 1 – 5 of 5) sorted by relevance

/bionic/tests/
Ddlfcn_test.cpp209 void* handle = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
212 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
232 void* handle_soname = dlopen(soname, RTLD_NOW | RTLD_NOLOAD); in TEST()
237 void* handle_filename = dlopen(filename, RTLD_NOW | RTLD_NOLOAD); in TEST()
453 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
477 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
479 handle = dlopen("libtest_check_order_reloc_siblings_1.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
518 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
564 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
608 handle = dlopen("libtest_two_parents_parent1.so", RTLD_NOW | RTLD_LOCAL | RTLD_NOLOAD); in TEST()
[all …]
Ddlext_test.cpp74 void* h = dlopen(kLibName, RTLD_NOW | RTLD_NOLOAD); in SetUp()
76 h = dlopen(kLibNameNoRelro, RTLD_NOW | RTLD_NOLOAD); in SetUp()
754 handle_public = dlopen(lib_public_path.c_str(), RTLD_NOW | RTLD_NOLOAD); in TEST()
803 handle_public = dlopen(lib_public_path.c_str(), RTLD_NOW | RTLD_NOLOAD); in TEST()
828 handle_public = dlopen(lib_public_path.c_str(), RTLD_NOW | RTLD_NOLOAD); in TEST()
1134 handle = android_dlopen_ext(root_lib, RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1141 handle = android_dlopen_ext(g_public_lib, RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1680 void* handle = android_dlopen_ext("libnstest_dlopened.so", RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1687 handle = android_dlopen_ext("libnstest_dlopened.so", RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1692 RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
[all …]
/bionic/tests/libs/
Dcfi_test_helper2.cpp24 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD); in main()
/bionic/libc/include/
Ddlfcn.h159 #define RTLD_NOLOAD 0x00004 macro
/bionic/linker/
Dlinker.cpp1211 if ((rtld_flags & RTLD_NOLOAD) != 0) { in load_library()
2136 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()