HomeSort by relevance Sort by last modified time
    Searched full:weak_func (Results 1 - 2 of 2) sorted by null

  /bionic/tests/libs/
dlsym_weak_function.cpp 17 extern "C" int __attribute__((weak)) weak_func() { function
  /bionic/tests/
dlfcn_test.cpp 285 int (*weak_func)();
286 weak_func = reinterpret_cast<int (*)()>(dlsym(handle, "weak_func"));
287 ASSERT_TRUE(weak_func != NULL) << "dlerror: " << dlerror();
288 EXPECT_EQ(42, weak_func());

Completed in 65 milliseconds