Searched refs:dlsym (Results 1 - 7 of 7) sorted by relevance

/bionic/libc/include/
H A Ddlfcn.h49 extern void* dlsym(void* handle, const char* symbol);
/bionic/libdl/
H A Dlibdl.c23 void *dlsym(void *handle, const char *symbol) { return 0; } function
H A Ddltest.c133 symbol = dlsym(handle, symname);
135 if (dlerr != NULL) fprintf(stderr, "dlsym() error: %s\n", dlerr);
/bionic/tests/
H A Ddlfcn_test.cpp41 void* sym = dlsym(self, "DlSymTestFunction");
93 sym = dlsym(NULL, "test");
96 ASSERT_SUBSTR("dlsym library handle is null", dlerror());
104 sym = dlsym(self, NULL);
110 sym = dlsym(self, "ThisSymbolDoesNotExist");
123 void* sym = dlsym(self, "DlSymTestFunction");
/bionic/linker/
H A Ddlfcn.cpp73 void* dlsym(void* handle, const char* symbol) { function
77 __bionic_format_dlerror("dlsym library handle is null", NULL);
81 __bionic_format_dlerror("dlsym symbol name is null", NULL);
152 "dlopen\0dlclose\0dlsym\0dlerror\0dladdr\0android_update_LD_LIBRARY_PATH\0dl_unwind_find_exidx\0"
158 "dlopen\0dlclose\0dlsym\0dlerror\0dladdr\0android_update_LD_LIBRARY_PATH\0dl_iterate_phdr\0"
180 ELF32_SYM_INITIALIZER(15, &dlsym, 1),
/bionic/libc/bionic/
H A Dmalloc_debug_common.cpp299 *func = reinterpret_cast<FunctionType>(dlsym(malloc_impl_handler, symbol));
301 error_log("%s: dlsym(\"%s\") failed", __progname, symbol);
414 malloc_debug_initialize = reinterpret_cast<MallocDebugInit>(dlsym(malloc_impl_handle,
431 reinterpret_cast<MemCheckInit>(dlsym(malloc_impl_handle,
492 reinterpret_cast<MallocDebugFini>(dlsym(libc_malloc_impl_handle,
H A Ddebug_stacktrace.cpp55 void* sym = dlsym(gDemangler, "__cxa_demangle");

Completed in 289 milliseconds