Searched refs:dlsym (Results 1 – 9 of 9) sorted by relevance
/bionic/tests/ |
D | dlfcn_test.cpp | 55 void* sym = dlsym(self, "DlSymTestFunction"); in TEST() 72 void* sym = dlsym(handle, "getRandomNumber"); in TEST() 102 fn_ptr foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); in TEST() 103 fn_ptr foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST() 114 foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); in TEST() 115 foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST() 128 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST() 132 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot")); in TEST() 160 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "relo_test_get_answer")); in TEST() 189 void* sym = dlsym(RTLD_DEFAULT, "dlopen_test_get_answer"); in TEST() [all …]
|
D | dlext_test.cpp | 84 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 94 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 111 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 131 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 182 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 212 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 230 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TEST_F() 296 fn f = reinterpret_cast<fn>(dlsym(handle_, "getRandomNumber")); in TryUsingRelro()
|
D | atexit_test.cpp | 33 void* sym = dlsym(handle, "register_atexit"); in TEST()
|
/bionic/libc/include/ |
D | dlfcn.h | 49 extern void* dlsym(void* handle, const char* symbol);
|
/bionic/libdl/ |
D | libdl.c | 27 void* dlsym(void* handle __unused, const char* symbol __unused) { return 0; } in dlsym() function
|
/bionic/libc/bionic/ |
D | NetdClient.cpp | 30 InitFunctionType initFunction = reinterpret_cast<InitFunctionType>(dlsym(handle, symbol)); in netdClientInitFunction()
|
D | malloc_debug_common.cpp | 302 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol)); in InitMallocFunction() 413 malloc_debug_initialize = reinterpret_cast<MallocDebugInit>(dlsym(malloc_impl_handle, in malloc_init_impl() 429 reinterpret_cast<MemCheckInit>(dlsym(malloc_impl_handle, "memcheck_initialize")); in malloc_init_impl() 499 reinterpret_cast<MallocDebugFini>(dlsym(libc_malloc_impl_handle, "malloc_debug_finalize")); in malloc_fini_impl()
|
D | debug_stacktrace.cpp | 65 void* sym = dlsym(g_demangler, "__cxa_demangle"); in backtrace_startup()
|
/bionic/linker/ |
D | dlfcn.cpp | 86 void* dlsym(void* handle, const char* symbol) { in dlsym() function 205 ELFW(SYM_INITIALIZER)( 15, &dlsym, 1),
|