Searched refs:handle1 (Results 1 – 2 of 2) sorted by relevance
/bionic/tests/ |
D | dlext_test.cpp | 825 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local 826 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 832 ASSERT_TRUE(handle1 != handle2); in TEST() 836 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string")); in TEST() 847 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string")); in TEST() 859 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string")); in TEST() 869 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string")); in TEST() 883 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_internal_extern_string")); in TEST() 889 dlclose(handle1); in TEST() 1371 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo); in TEST() local [all …]
|
D | dlfcn_test.cpp | 796 void* handle1 = dlopen("libtest_nodelete_2.so", RTLD_NOW | RTLD_NODELETE); in TEST() local 797 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 798 ASSERT_EQ(handle, handle1); in TEST() 800 dlclose(handle1); in TEST() 969 void* handle1 = dlopen(nullptr, RTLD_NOW); in TEST() local 970 ASSERT_TRUE(handle1 != nullptr) << dlerror(); in TEST() 976 ASSERT_EQ(handle1, handle2); in TEST() 1171 void* handle1 = dlopen("libdlext_test.so", RTLD_NOW); in TEST() local 1173 ASSERT_TRUE(handle1 != nullptr); in TEST() 1175 ASSERT_EQ(handle1, handle2); in TEST() [all …]
|