Home | History | Annotate | Download | only in tests

Lines Matching defs:handle1

825   void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
826 ASSERT_TRUE(handle1 != nullptr) << dlerror();
832 ASSERT_TRUE(handle1 != handle2);
836 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
847 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
859 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
869 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
883 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_internal_extern_string"));
889 dlclose(handle1);
1371 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1372 ASSERT_TRUE(handle1 != nullptr) << dlerror();
1400 fn_t ns_get_local_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
1406 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
1412 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
1417 fn_t ns_get_dlopened_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
1422 dlclose(handle1);
1499 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1500 ASSERT_TRUE(handle1 != nullptr) << dlerror();
1521 fn_t ns_get_local_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
1531 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
1542 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
1552 fn_t ns_get_dlopened_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
1565 dlclose(handle1);
1750 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1751 ASSERT_TRUE(handle1 != nullptr) << dlerror();
1757 handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1758 ASSERT_TRUE(handle1 != nullptr) << dlerror();
1764 handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1765 ASSERT_TRUE(handle1 == nullptr);