Lines Matching refs:handle2
180 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST() local
182 ASSERT_TRUE(handle2 != nullptr); in TEST()
183 ASSERT_TRUE(handle == handle2); in TEST()
185 ASSERT_EQ(0, dlclose(handle2)); in TEST()
503 void* handle2 = dlopen("libtest_two_parents_parent2.so", RTLD_NOW | RTLD_LOCAL); in TEST() local
504 ASSERT_TRUE(handle2 != nullptr) << dlerror(); in TEST()
507 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer")); in TEST()
517 fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer")); in TEST()
521 ASSERT_EQ(0, dlclose(handle2)); in TEST()
827 void* handle2 = dlopen(get_executable_path().c_str(), RTLD_NOW); in TEST() local
828 ASSERT_TRUE(handle2 != nullptr) << dlerror(); in TEST()
831 ASSERT_EQ(handle1, handle2); in TEST()
992 void* handle2 = dlopen("libdlext_test_v2.so", RTLD_NOW); in TEST() local
994 ASSERT_TRUE(handle2 != nullptr); in TEST()
995 ASSERT_EQ(handle1, handle2); in TEST()
997 dlclose(handle2); in TEST()