Searched refs:is_ctor_called (Results 1 – 3 of 3) sorted by relevance
28 static const char* is_ctor_called() __attribute__ ((ifunc("is_ctor_called_ifun")));37 return is_ctor_called(); in is_ctor_called_irelative()
344 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST() local345 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() local360 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 …]