Home
last modified time | relevance | path

Searched refs:fn_t (Results 1 – 3 of 3) sorted by relevance

/bionic/tests/
Ddlfcn_test.cpp79 typedef int* (*fn_t)(); in TEST() typedef
80 fn_t lookup_dlsym_symbol_using_RTLD_DEFAULT = in TEST()
81 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_DEFAULT")); in TEST()
88 fn_t lookup_dlsym_symbol2_using_RTLD_DEFAULT = in TEST()
89 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol2_using_RTLD_DEFAULT")); in TEST()
96 fn_t lookup_dlsym_symbol_using_RTLD_NEXT = in TEST()
97 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_NEXT")); in TEST()
119 typedef int* (*fn_t)(); in TEST() typedef
120 fn_t lookup_dlsym_symbol_using_RTLD_DEFAULT = in TEST()
121 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_DEFAULT")); in TEST()
[all …]
Ddlext_test.cpp271 typedef void (*fn_t)(const char*); in TEST() typedef
272 fn_t android_update_LD_LIBRARY_PATH = in TEST()
273 reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "android_update_LD_LIBRARY_PATH")); in TEST()
687 typedef const char* (*fn_t)(); in TEST() typedef
689 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string")); in TEST()
691 fn_t ns_get_local_string2 = reinterpret_cast<fn_t>(dlsym(handle2, "ns_get_local_string")); in TEST()
699 fn_t ns_get_private_extern_string1 = in TEST()
700 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string")); in TEST()
702 fn_t ns_get_private_extern_string2 = in TEST()
703 reinterpret_cast<fn_t>(dlsym(handle2, "ns_get_private_extern_string")); in TEST()
[all …]
Dpthread_dlfcn_test.cpp45 typedef int (*fn_t)(void (*)(void), void (*)(void), void (*)(void)); in TEST() typedef
46 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "proxy_pthread_atfork")); in TEST()