Home
last modified time | relevance | path

Searched refs:dlopen (Results 1 – 10 of 10) sorted by relevance

/bionic/tests/
Ddlfcn_test.cpp51 void* self = dlopen(NULL, RTLD_NOW); in TEST()
68 void* handle = dlopen("libtest_with_dependency.so", RTLD_NOW); in TEST()
81 void* handle = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
83 handle = dlopen("libtest_simple.so", RTLD_NOW); in TEST()
84 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST()
100 void* handle = dlopen("libtest_ifunc.so", RTLD_NOW); in TEST()
112 handle = dlopen("libtest_ifunc.so", RTLD_NOW); in TEST()
126 void* handle = dlopen("libtest_ifunc.so", RTLD_NOW); in TEST()
156 handle = dlopen("libtest_relo_check_dt_needed_order.so", RTLD_NOW); in TEST()
191 void* handle = dlopen("libtest_check_order.so", RTLD_NOW | RTLD_GLOBAL); in TEST()
[all …]
Datexit_test.cpp30 void* handle = dlopen("libtest_atexit.so", RTLD_NOW); in TEST()
Ddlext_test.cpp64 void* h = dlopen(LIBNAME, RTLD_NOW | RTLD_NOLOAD); in SetUp()
66 h = dlopen(LIBNAME_NORELRO, RTLD_NOW | RTLD_NOLOAD); in SetUp()
392 handle = dlopen(lib, RTLD_NOW); in SpawnChildrenAndMeasurePss()
/bionic/libc/include/
Ddlfcn.h46 extern void* dlopen(const char* filename, int flag);
/bionic/libdl/
Dlibdl.c25 void* dlopen(const char* filename __unused, int flag __unused) { return 0; } in dlopen() function
/bionic/libc/bionic/
DNetdClient.cpp37 void* netdClientHandle = dlopen("libnetd_client.so", RTLD_LAZY); in netdClientInitImpl()
Ddebug_stacktrace.cpp63 g_demangler = dlopen("libgccdemangle.so", RTLD_NOW); in backtrace_startup()
Dmalloc_debug_common.cpp405 void* malloc_impl_handle = dlopen(so_name, RTLD_LAZY); in malloc_init_impl()
/bionic/linker/
Ddlfcn.cpp82 void* dlopen(const char* filename, int flags) { in dlopen() function
203 ELFW(SYM_INITIALIZER)( 0, &dlopen, 1),
/bionic/
DHACKING.txt16 implementation at runtime. This is where stuff like dlopen(3) lives.