Searched defs:sym (Results 1 - 4 of 4) sorted by relevance

/bionic/tests/
H A Datexit_test.cpp33 void* sym = dlsym(handle, "register_atexit"); local
34 ASSERT_TRUE(sym != NULL);
35 reinterpret_cast<void (*)(std::string*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_dtor);
H A Ddlfcn_test.cpp53 void* sym = dlsym(self, "DlSymTestFunction"); local
54 ASSERT_TRUE(sym != NULL);
56 void (*function)() = reinterpret_cast<void(*)()>(sym);
70 void* sym = dlsym(handle, "getRandomNumber"); local
71 ASSERT_TRUE(sym != NULL);
73 fn = reinterpret_cast<int (*)(void)>(sym);
127 void* sym; local
132 sym = dlsym(NULL, "test");
133 ASSERT_TRUE(sym == NULL);
140 sym
159 void* sym = dlsym(self, "DlSymTestFunction"); local
[all...]
/bionic/libc/bionic/
H A Ddebug_stacktrace.cpp65 void* sym = dlsym(g_demangler, "__cxa_demangle"); local
66 g_demangler_fn = reinterpret_cast<DemanglerFn>(sym);
/bionic/linker/
H A Dlinker.cpp589 TRACE_TYPE(LOOKUP, "si %s sym %s s->st_value = %p, "
691 ElfW(Sym)* sym = &si->symtab[i];
692 if (sym->st_shndx != SHN_UNDEF &&
693 soaddr >= sym->st_value &&
694 soaddr < sym->st_value + sym->st_size) {
695 return sym;
941 unsigned sym = ELFW(R_SYM)(rela->r_info); local
950 if (sym != 0) {
951 sym_name = reinterpret_cast<const char*>(si->strtab + si->symtab[sym]
1206 unsigned sym = ELFW(R_SYM)(rel->r_info); local
[all...]

Completed in 104 milliseconds