Lines Matching full:get_answer
309 // get_answer() is defined in (2, 3, a, b, c)
329 // we lookup and call get_answer which is defined in '_2.so'
355 // +-> ..._f.so <- exports get_answer() that calls get_anser_impl();
714 int (*get_answer)();
715 get_answer = reinterpret_cast<int (*)()>(dlsym(handle, "dl_df_1_global_get_answer"));
716 ASSERT_TRUE(get_answer != nullptr) << dlerror();
717 ASSERT_EQ(42, get_answer());