Home | History | Annotate | Download | only in tests

Lines Matching defs:handle1

796   void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE);
797 ASSERT_TRUE(handle1 != nullptr) << dlerror();
798 ASSERT_EQ(handle, handle1);
800 dlclose(handle1);
969 void* handle1 = dlopen(nullptr, RTLD_NOW);
970 ASSERT_TRUE(handle1 != nullptr) << dlerror();
976 ASSERT_EQ(handle1, handle2);
978 GTEST_SKIP() << "Skipping ASSERT_EQ(handle1, handle2) for glibc: "
1171 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW);
1173 ASSERT_TRUE(handle1 != nullptr);
1175 ASSERT_EQ(handle1, handle2);
1176 dlclose(handle1);