Lines Matching refs:fn_t

79   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()
128 fn_t lookup_dlsym_symbol2_using_RTLD_DEFAULT = in TEST()
129 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol2_using_RTLD_DEFAULT")); in TEST()
136 fn_t lookup_dlsym_symbol_using_RTLD_NEXT = in TEST()
137 reinterpret_cast<fn_t>(dlsym(handle, "lookup_dlsym_symbol_using_RTLD_NEXT")); in TEST()
281 typedef int (*fn_t) (void); in TEST() typedef
282 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "relo_test_get_answer")); in TEST()
315 typedef int (*fn_t) (void); in TEST() typedef
316 fn_t fn, fn2; in TEST()
317 fn = reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "check_order_dlsym_get_answer")); in TEST()
319 fn2 = reinterpret_cast<fn_t>(dlsym(RTLD_DEFAULT, "check_order_dlsym_get_answer2")); in TEST()
368 typedef int (*fn_t) (void); in TEST() typedef
369 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_get_answer")); in TEST()
395 typedef int (*fn_t) (void); in TEST() typedef
396 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_get_answer")); in TEST()
433 typedef int (*fn_t) (void); in TEST() typedef
434 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_grandchild_get_answer")); in TEST()
479 typedef int (*fn_t) (void); in TEST() typedef
480 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_nephew_get_answer")); in TEST()
506 typedef int (*fn_t) (void); in TEST() typedef
507 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer")); in TEST()
517 fn = reinterpret_cast<fn_t>(dlsym(handle2, "check_order_reloc_get_answer")); in TEST()
554 typedef int (*fn_t) (void); in TEST() typedef
555 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "check_order_reloc_root_get_answer")); in TEST()
1017 typedef int (*fn_t)(); in TEST() typedef
1018 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); in TEST()
1027 typedef int (*fn_t)(); in TEST() typedef
1028 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); in TEST()
1037 typedef int (*fn_t)(); in TEST() typedef
1038 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); in TEST()
1047 typedef int (*fn_t)(); in TEST() typedef
1048 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "get_function_version")); in TEST()
1057 typedef int (*fn_t)(); in TEST() typedef
1058 fn_t fn = reinterpret_cast<fn_t>(dlsym(handle, "versioned_function")); in TEST()
1067 typedef int (*fn_t)(); in TEST() typedef
1070 fn_t fn = reinterpret_cast<fn_t>(dlvsym(handle, "versioned_function", "nonversion")); in TEST()
1076 fn_t fn = reinterpret_cast<fn_t>(dlvsym(handle, "versioned_function", "TESTLIB_V2")); in TEST()