HomeSort by relevance Sort by last modified time
    Searched refs:is_ctor_called (Results 1 - 3 of 3) sorted by null

  /bionic/tests/libs/
dlopen_testlib_ifunc.cpp 28 static const char* is_ctor_called() __attribute__ ((ifunc("is_ctor_called_ifun")));
37 return is_ctor_called();
dlopen_testlib_ifunc_variable_impl.cpp 28 static const char* is_ctor_called() __attribute__ ((ifunc("is_ctor_called_ifun")));
37 return is_ctor_called();
  /bionic/tests/
dlfcn_test.cpp 339 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); local
340 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror();
341 ASSERT_STREQ("false", is_ctor_called());
343 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot"));
344 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror();
345 ASSERT_STREQ("true", is_ctor_called());
354 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); local
355 ASSERT_TRUE(is_ctor_called != nullptr) << dlerror();
356 ASSERT_STREQ("false", is_ctor_called());
358 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot"))
    [all...]

Completed in 121 milliseconds