Home | History | Annotate | Download | only in tests

Lines Matching defs:handle1

670   void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
671 ASSERT_TRUE(handle1 != nullptr) << dlerror();
677 ASSERT_TRUE(handle1 != handle2);
689 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
700 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
712 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
722 fn_t ns_get_dlopened_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
732 dlclose(handle1);
795 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
796 ASSERT_TRUE(handle1 != nullptr) << dlerror();
824 fn_t ns_get_local_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
830 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
836 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
841 fn_t ns_get_dlopened_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
846 dlclose(handle1);
897 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
898 ASSERT_TRUE(handle1 != nullptr) << dlerror();
919 fn_t ns_get_local_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string"));
929 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string"));
940 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_public_extern_string"));
950 fn_t ns_get_dlopened_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string"));
963 dlclose(handle1);
1084 void* handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1085 ASSERT_TRUE(handle1 != nullptr) << dlerror();
1091 handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1092 ASSERT_TRUE(handle1 != nullptr) << dlerror();
1098 handle1 = android_dlopen_ext(root_lib, RTLD_NOW, &extinfo);
1099 ASSERT_TRUE(handle1 == nullptr);