Searched refs:is_ctor_called (Results 1 – 2 of 2) sorted by relevance
26 static const char* is_ctor_called() __attribute__ ((ifunc("is_ctor_called_ifun")));35 return is_ctor_called(); in is_ctor_called_irelative()
250 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST() local251 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror(); in TEST()252 ASSERT_STREQ("false", is_ctor_called()); in TEST()254 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot")); in TEST()255 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror(); in TEST()256 ASSERT_STREQ("true", is_ctor_called()); in TEST()