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() 1387 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local [all …]
|
D | dlfcn_test.cpp | 782 void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE); in TEST() local 783 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 784 ASSERT_EQ(handle, handle1); in TEST() 786 dlclose(handle1); in TEST() 960 void* handle1 = dlopen(nullptr, RTLD_NOW); in TEST() local 961 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 967 ASSERT_EQ(handle1, handle2); in TEST() 1154 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW); in TEST() local 1156 ASSERT_TRUE(handle1 != nullptr); in TEST() 1158 ASSERT_EQ(handle1, handle2); in TEST() [all …]
|