Home
last modified time | relevance | path

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

/bionic/libc/stdlib/
Datexit.c45 void (*fn_ptr)(void *); member
109 fnp->fn_ptr = func; in __cxa_atexit()
141 if (p->fns[n].fn_ptr == NULL) in __cxa_finalize()
152 p->fns[n].fn_ptr = NULL; in __cxa_finalize()
156 (*fn.fn_ptr)(fn.fn_arg); in __cxa_finalize()
216 p->fns[0].fn_ptr = (void (*)(void *))func; in __atexit_register_cleanup()
/bionic/tests/
Ddlfcn_test.cpp217 typedef const char* (*fn_ptr)(); in TEST() typedef
224 fn_ptr foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); in TEST()
225 fn_ptr foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST()
236 foo_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo")); in TEST()
237 foo_library_ptr = reinterpret_cast<fn_ptr>(dlsym(handle, "foo_library")); in TEST()
246 typedef const char* (*fn_ptr)(); in TEST() typedef
250 fn_ptr is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_irelative")); in TEST()
254 is_ctor_called = reinterpret_cast<fn_ptr>(dlsym(handle, "is_ctor_called_jump_slot")); in TEST()