Searched refs:fn_ptr (Results 1 – 3 of 3) sorted by relevance
/bionic/tests/libs/ |
D | dlopen_testlib_ifunc.cpp | 56 typedef const char* (*fn_ptr)(); typedef 58 extern "C" fn_ptr is_ctor_called_ifun() { in is_ctor_called_ifun() 62 extern "C" fn_ptr foo_ifunc() { in foo_ifunc()
|
/bionic/tests/ |
D | dlfcn_test.cpp | 277 typedef const char* (*fn_ptr)(); in TEST() typedef 287 fn_ptr foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST() 301 foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST() 311 typedef const char* (*fn_ptr)(); in TEST() typedef 318 fn_ptr foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); in TEST() 319 fn_ptr foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST() 330 foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); in TEST() 331 foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST() 340 typedef const char* (*fn_ptr)(); in TEST() typedef 344 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST() [all …]
|
/bionic/benchmarks/ |
D | util.h | 33 …((unused)) EmplaceBenchmark(const std::string& fn_name, benchmark_func_t fn_ptr, const std::string… 35 g_str_to_func.emplace(std::string(fn_name), std::make_pair(fn_ptr, arg));
|