Lines Matching refs:dlsym
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()
195 fn = reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "dlopen_test_get_answer")); in TEST()
197 fn2 = reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "dlopen_test_get_answer2")); in TEST()
214 void* f = dlsym(RTLD_DEFAULT, "dlopen_test_invalid_function"); in TEST()
272 sym = dlsym(NULL, "test"); in TEST()
280 sym = dlsym(self, NULL); in TEST()
286 sym = dlsym(self, "ThisSymbolDoesNotExist"); in TEST()
299 void* sym = dlsym(self, "DlSymTestFunction"); in TEST()
401 void* addr = dlsym(RTLD_DEFAULT, "ANY_UNKNOWN_SYMBOL_NAME"); in TEST()
406 void* addr = dlsym(RTLD_DEFAULT, "fopen"); in TEST()
411 void* addr = dlsym(RTLD_NEXT, "ANY_UNKNOWN_SYMBOL_NAME"); in TEST()
416 void* addr = dlsym(RTLD_NEXT, "fopen"); in TEST()
426 weak_func = reinterpret_cast<int (*)()>(dlsym(handle, "weak_func")); in TEST()