Searched refs:handle1 (Results 1 – 2 of 2) sorted by relevance
/bionic/tests/ |
D | dlext_test.cpp | 670 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local 671 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 677 ASSERT_TRUE(handle1 != handle2); in TEST() 689 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string")); in TEST() 700 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string")); in TEST() 712 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string")); in TEST() 722 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string")); in TEST() 732 dlclose(handle1); in TEST() 795 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local 796 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() [all …]
|
D | dlfcn_test.cpp | 687 void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE); in TEST() local 688 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 689 ASSERT_EQ(handle, handle1); in TEST() 691 dlclose(handle1); in TEST() 824 void* handle1 = dlopen(nullptr, RTLD_NOW); in TEST() local 825 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 831 ASSERT_EQ(handle1, handle2); in TEST() 991 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW); in TEST() local 993 ASSERT_TRUE(handle1 != nullptr); in TEST() 995 ASSERT_EQ(handle1, handle2); in TEST() [all …]
|