Home
last modified time | relevance | path

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

/bionic/tests/
Ddlfcn_test.cpp115 typedef int* (*fn_t)(); in TEST() typedef
116 fn_t lookup_dlsym_symbol_using_RTLD_DEFAULT = in TEST()
117 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_DEFAULT")); in TEST()
124 fn_t lookup_dlsym_symbol2_using_RTLD_DEFAULT = in TEST()
125 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol2_using_RTLD_DEFAULT")); in TEST()
132 fn_t lookup_dlsym_symbol_using_RTLD_NEXT = in TEST()
133 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_NEXT")); in TEST()
155 typedef int* (*fn_t)(); in TEST() typedef
156 fn_t lookup_dlsym_symbol_using_RTLD_DEFAULT = in TEST()
157 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_DEFAULT")); in TEST()
[all …]
Ddlext_test.cpp295 typedef void (*fn_t)(const char*); in TEST() typedef
296 fn_t android_update_LD_LIBRARY_PATH = in TEST()
297 reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "android_update_LD_LIBRARY_PATH")); in TEST()
853 typedef const char* (*fn_t)(); in TEST() typedef
855 fn_t ns_get_local_string1 = reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_local_string")); in TEST()
857 fn_t ns_get_local_string2 = reinterpret_cast<fn_t>(dlsym(handle2, "ns_get_local_string")); in TEST()
865 fn_t ns_get_private_extern_string1 = in TEST()
866 reinterpret_cast<fn_t>(dlsym(handle1, "ns_get_private_extern_string")); in TEST()
868 fn_t ns_get_private_extern_string2 = in TEST()
869 reinterpret_cast<fn_t>(dlsym(handle2, "ns_get_private_extern_string")); in TEST()
[all …]
Dpthread_dlfcn_test.cpp50 typedef int (*fn_t)(void (*)(void), void (*)(void), void (*)(void)); in TEST() typedef
51 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "proxy_pthread_atfork")); in TEST()
95 typedef int (*fn_t)(void (*)(void), void (*)(void), void (*)(void)); in TEST() typedef
96 fn_t fn = reinterpret_cast<fn_t>(dlsym(g_atfork_test_handle, "proxy_pthread_atfork")); in TEST()