Home
last modified time | relevance | path

Searched refs:ns_get_dlopened_string (Results 1 – 2 of 2) sorted by relevance

/aosp_15_r20/bionic/tests/
H A Ddlext_test.cpp1439 fn_t ns_get_dlopened_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string")); in TEST() local
1440 ASSERT_TRUE(ns_get_dlopened_string != nullptr) << dlerror(); in TEST()
1442 …ASSERT_STREQ("This string is from private namespace (dlopened library)", ns_get_dlopened_string()); in TEST()
1576 fn_t ns_get_dlopened_string = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_dlopened_string")); in TEST() local
1577 ASSERT_TRUE(ns_get_dlopened_string != nullptr) << dlerror(); in TEST()
1583 …ASSERT_STREQ("This string is from private namespace (dlopened library)", ns_get_dlopened_string()); in TEST()
1586 ASSERT_TRUE(ns_get_dlopened_string() != ns_get_dlopened_string_shared()); in TEST()
/aosp_15_r20/bionic/tests/libs/
H A Dnamespaces_root.cpp53 extern "C" const char* ns_get_dlopened_string() { in ns_get_dlopened_string() function