Lines Matching refs:dl_handle_
27 dl_handle_ = dlopen("libbacktrace_test.so", RTLD_NOW | RTLD_LOCAL); in SetUpTestCase()
30 dlsym(dl_handle_, "test_level_one")); in SetUpTestCase()
33 dlsym(dl_handle_, "test_level_two")); in SetUpTestCase()
36 dlsym(dl_handle_, "test_level_three")); in SetUpTestCase()
39 dlsym(dl_handle_, "test_level_four")); in SetUpTestCase()
42 dlsym(dl_handle_, "test_recursive_call")); in SetUpTestCase()
45 dlsym(dl_handle_, "test_get_context_and_wait")); in SetUpTestCase()
48 reinterpret_cast<void (*)(int, siginfo_t*, void*)>(dlsym(dl_handle_, "test_signal_action")); in SetUpTestCase()
51 reinterpret_cast<void (*)(int)>(dlsym(dl_handle_, "test_signal_handler")); in SetUpTestCase()
55 ASSERT_TRUE(dl_handle_ != nullptr); in SetUp()
67 static void* dl_handle_;