Searched refs:handle2 (Results 1 – 2 of 2) sorted by relevance
/bionic/tests/ |
D | dlext_test.cpp | 210 void* handle2 = android_dlopen_ext("libdlext_test_v2.so", RTLD_NOW, &extinfo); in TEST() local 211 ASSERT_DL_NOTNULL(handle2); in TEST() 212 ASSERT_TRUE(handle != handle2); in TEST() 214 dlclose(handle2); in TEST() 228 void* handle2 = android_dlopen_ext("libdlext_test.so", RTLD_NOW, &extinfo); in TEST() local 230 ASSERT_DL_NOTNULL(handle2); in TEST() 231 ASSERT_TRUE(handle == handle2); in TEST() 233 dlclose(handle2); in TEST() 674 void* handle2 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local 675 ASSERT_TRUE(handle2 != nullptr) << dlerror(); in TEST() [all …]
|
D | dlfcn_test.cpp | 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 [all …]
|