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

/bionic/tests/
H A Datexit_test.cpp55 void* sym = dlsym(handle, "register_atexit"); local
56 ASSERT_TRUE(sym != nullptr);
57 reinterpret_cast<void (*)(std::string*, bool*, bool*)>(sym)(&atexit_call_sequence, &valid_this_in_static_dtor, &attr_dtor_called);
H A Ddlfcn_test.cpp58 void* sym = dlsym(self, "DlSymTestFunction"); local
59 ASSERT_TRUE(sym != nullptr);
61 void (*function)() = reinterpret_cast<void(*)()>(sym);
153 void* sym = dlsym(handle, "getRandomNumber"); local
154 ASSERT_TRUE(sym == nullptr);
157 sym = dlsym(handle, "DlSymTestFunction");
158 ASSERT_TRUE(sym == nullptr);
168 void* sym = dlsym(handle, "getRandomNumber"); local
169 ASSERT_TRUE(sym != nullptr) << dlerror();
171 fn = reinterpret_cast<int (*)(void)>(sym);
311 void* sym = dlsym(RTLD_DEFAULT, "check_order_dlsym_get_answer"); local
563 void* sym = dlsym(RTLD_DEFAULT, "dlopen_testlib_simple_func"); local
588 void* sym = dlsym(RTLD_DEFAULT, "dlopen_testlib_simple_func"); local
758 void* sym; local
782 void* sym = dlsym(self, "DlSymTestFunction"); local
890 void* sym = dlsym(handle, "getRandomNumber"); local
913 void* sym = dlsym(handle, "getRandomNumber"); local
[all...]
H A Ddlext_test.cpp186 void* sym = dlsym(RTLD_DEFAULT, "this_symbol_does_not_exist___"); local
187 ASSERT_TRUE(sym == nullptr);

Completed in 43 milliseconds