Home
last modified time | relevance | path

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

/bionic/tests/libs/
Dcfi_test_helper2.cpp25 handle = dlopen("libcfi-test.so", RTLD_NOW | RTLD_NOLOAD); in main()
/bionic/tests/
Ddlfcn_test.cpp223 void* handle = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
226 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
246 void* handle_soname = dlopen(soname, RTLD_NOW | RTLD_NOLOAD); in TEST()
251 void* handle_filename = dlopen(filename, RTLD_NOW | RTLD_NOLOAD); in TEST()
467 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
491 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
493 handle = dlopen("libtest_check_order_reloc_siblings_1.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
532 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
578 void* handle = dlopen("libtest_check_order_reloc_siblings.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
622 handle = dlopen("libtest_two_parents_parent1.so", RTLD_NOW | RTLD_LOCAL | RTLD_NOLOAD); in TEST()
[all …]
Ddlext_test.cpp73 void* h = dlopen(kLibName, RTLD_NOW | RTLD_NOLOAD); in SetUp()
75 h = dlopen(kLibNameNoRelro, RTLD_NOW | RTLD_NOLOAD); in SetUp()
735 handle_public = dlopen(lib_public_path.c_str(), RTLD_NOW | RTLD_NOLOAD); in TEST()
784 handle_public = dlopen(lib_public_path.c_str(), RTLD_NOW | RTLD_NOLOAD); in TEST()
809 handle_public = dlopen(lib_public_path.c_str(), RTLD_NOW | RTLD_NOLOAD); in TEST()
1118 handle = android_dlopen_ext(root_lib, RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1125 handle = android_dlopen_ext(g_public_lib, RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1659 void* handle = android_dlopen_ext("libnstest_dlopened.so", RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1666 handle = android_dlopen_ext("libnstest_dlopened.so", RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
1671 RTLD_NOW | RTLD_NOLOAD, &extinfo); in TEST()
[all …]
/bionic/libc/include/
Ddlfcn.h58 #define RTLD_NOLOAD 0x00004 macro
/bionic/linker/
Dlinker.cpp1305 if ((rtld_flags & RTLD_NOLOAD) != 0) { in load_library()
2202 if ((flags & ~(RTLD_NOW|RTLD_LAZY|RTLD_LOCAL|RTLD_GLOBAL|RTLD_NODELETE|RTLD_NOLOAD)) != 0) { in do_dlopen()