Home
last modified time | relevance | path

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

/freebsd/lib/libc/stdlib/
H A Datexit.c72 } fn_ptr; /* function pointer */ member
132 fn.fn_ptr.std_func = func; in atexit()
158 fn.fn_ptr.cxa_func = (void(*)(void*))GET_BLOCK_FUNCTION(func); in atexit_b()
177 fn.fn_ptr.cxa_func = func; in __cxa_atexit()
220 fn.fn_ptr.cxa_func)) in __cxa_finalize()
232 fn.fn_ptr.cxa_func(fn.fn_arg); in __cxa_finalize()
234 fn.fn_ptr.std_func(); in __cxa_finalize()
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/
H A DGCDAProfiling.c86 typedef void (*fn_ptr)(void); typedef
95 fn_ptr fn;
113 static void fn_list_insert(struct fn_list* list, fn_ptr fn) { in fn_list_insert()
537 void llvm_register_writeout_function(fn_ptr fn) { in llvm_register_writeout_function()
568 void llvm_register_reset_function(fn_ptr fn) { in llvm_register_reset_function()
607 void llvm_gcov_init(fn_ptr wfn, fn_ptr rfn) { in llvm_gcov_init()
/freebsd/contrib/googletest/googlemock/test/
H A Dgmock-function-mocker_test.cc110 using fn_ptr = int (*)(bool); typedef in testing::gmock_function_mocker_test::FooInterface
111 virtual fn_ptr ReturnsFunctionPointer2(int) = 0;
179 MOCK_METHOD(fn_ptr, ReturnsFunctionPointer2, (int), ());
249 MOCK_METHOD1(ReturnsFunctionPointer2, fn_ptr(int));