Searched refs:handle1 (Results 1 – 2 of 2) sorted by relevance
/bionic/tests/ |
D | dlext_test.cpp | 844 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local 845 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 851 ASSERT_TRUE(handle1 != handle2); in TEST() 855 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string")); in TEST() 866 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string")); in TEST() 878 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string")); in TEST() 888 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string")); in TEST() 902 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_internal_extern_string")); in TEST() 908 dlclose(handle1); in TEST() 1390 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local [all …]
|
D | dlfcn_test.cpp | 793 void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE); in TEST() local 794 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 795 ASSERT_EQ(handle, handle1); in TEST() 797 dlclose(handle1); in TEST() 966 void* handle1 = dlopen(nullptr, RTLD_NOW); in TEST() local 967 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 973 ASSERT_EQ(handle1, handle2); in TEST() 1160 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW); in TEST() local 1162 ASSERT_TRUE(handle1 != nullptr); in TEST() 1164 ASSERT_EQ(handle1, handle2); in TEST() [all …]
|