Home
last modified time | relevance | path

Searched refs:handle2 (Results 1 – 2 of 2) sorted by relevance

/bionic/tests/
Ddlext_test.cpp187 void* handle2 = android_dlopen_ext("libdlext_test_v2.so", RTLD_NOW, &extinfo); in TEST() local
188 ASSERT_DL_NOTNULL(handle2); in TEST()
189 ASSERT_TRUE(handle != handle2); in TEST()
191 dlclose(handle2); in TEST()
205 void* handle2 = android_dlopen_ext("libdlext_test.so", RTLD_NOW, &extinfo); in TEST() local
207 ASSERT_DL_NOTNULL(handle2); in TEST()
208 ASSERT_TRUE(handle == handle2); in TEST()
210 dlclose(handle2); in TEST()
Ddlfcn_test.cpp180 void* handle2 = dlopen("libtest_simple.so", RTLD_NOW | RTLD_NOLOAD); in TEST() local
182 ASSERT_TRUE(handle2 != NULL); 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()
984 void* handle2 = dlopen("libdlext_test_v2.so", RTLD_NOW); in TEST() local
[all …]