Searched refs:lib_handle (Results 1 – 2 of 2) sorted by relevance
214 void* lib_handle = dlopen(name, RTLD_NOW); in has_shared_library() local215 if (lib_handle != nullptr) { in has_shared_library()216 dlclose(lib_handle); in has_shared_library()
1420 void* lib_handle = dlopen(tmp_so_name.c_str(), RTLD_NOW); in TEST_F() local1421 ASSERT_TRUE(lib_handle != nullptr); in TEST_F()1425 test_func = reinterpret_cast<test_func_t>(dlsym(lib_handle, "test_level_one")); in TEST_F()1445 void* lib_handle = dlopen(tmp_so_name.c_str(), RTLD_NOW); in TEST_F() local1446 ASSERT_TRUE(lib_handle != nullptr); in TEST_F()1450 test_func = reinterpret_cast<test_func_t>(dlsym(lib_handle, "test_level_one")); in TEST_F()