Home
last modified time | relevance | path

Searched refs:is_ctor_called (Results 1 – 3 of 3) sorted by relevance

/bionic/tests/libs/
Ddlopen_testlib_ifunc_variable_impl.cpp28 static const char* is_ctor_called() __attribute__ ((ifunc("is_ctor_called_ifun")));
37 return is_ctor_called(); in is_ctor_called_irelative()
Ddlopen_testlib_ifunc.cpp28 static const char* is_ctor_called() __attribute__ ((ifunc("is_ctor_called_ifun")));
37 return is_ctor_called(); in is_ctor_called_irelative()
/bionic/tests/
Ddlfcn_test.cpp344 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST() local
345 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror(); in TEST()
346 ASSERT_STREQ("false", is_ctor_called()); in TEST()
348 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot")); in TEST()
349 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror(); in TEST()
350 ASSERT_STREQ("true", is_ctor_called()); in TEST()
359 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST() local
360 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror(); in TEST()
361 ASSERT_STREQ("false", is_ctor_called()); in TEST()
363 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot")); in TEST()
[all …]